From 2cd4f4ab46cbe969741da46369d25afd4e1eec02 Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Sun, 23 Apr 2023 13:59:49 +0200 Subject: [PATCH] stream: add "full" feature flag (#5639) --- tokio-stream/Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 42f68cda3..58fc411d1 100644 --- a/tokio-stream/Cargo.toml +++ b/tokio-stream/Cargo.toml @@ -18,6 +18,16 @@ categories = ["asynchronous"] [features] default = ["time"] + +full = [ + "time", + "net", + "io-util", + "fs", + "sync", + "signal" +] + time = ["tokio/time"] net = ["tokio/net"] io-util = ["tokio/io-util"]