From c0aec78c05703668d04a2fffa1a778c996f5434f Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 4 Dec 2019 18:21:07 +0100 Subject: [PATCH] Restrict the set of tokio features we need --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fc2428a..ef4af3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ serde = "1.0.103" serde_derive = "1.0.103" serde-big-array = "0.2.0" siphasher = "0.3.1" -tokio = { version = "0.2", features = ["full"] } +tokio = { version = "0.2", features = ["fs", "rt-threaded", "time", "tcp", "udp", "stream"] } toml = "0.5.5" [dependencies.hyper]