Skip to content

Commit 33afb38

Browse files
committed
Minimize tokio features
I saw this go by https://www.reddit.com/r/rust/comments/v8e9fa/local_async_executors_and_why_they_should_be_the/ and I think it's a good argument why not to use the multithreaded tokio by default. Signed-off-by: Colin Walters <walters@verbum.org>
1 parent be302c3 commit 33afb38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libc = "0.2"
1919
serde = { features = ["derive"], version = "1.0.125" }
2020
serde_json = "1.0.64"
2121
semver = "1.0.4"
22-
tokio = { features = ["full"], version = "1" }
22+
tokio = { features = ["fs", "io-util", "macros", "process", "rt", "sync"], version = "1" }
2323
tracing = "0.1"
2424

2525
[lib]

0 commit comments

Comments
 (0)