From 5f1ab1a3ccd6af6d190cdd3e1580ed0a874fe9a3 Mon Sep 17 00:00:00 2001 From: Josh Wilson Date: Mon, 15 Jan 2024 10:17:35 +0100 Subject: [PATCH] feat: reduce tokio dep requirements --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 043f17285..08b64bc9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,12 +45,13 @@ xor_name = "5.0.0" features = [ "sha3" ] [dependencies.tokio] - version = "1.17.0" - features = [ "macros", "sync", "io-util", "rt", "rt-multi-thread" ] + version = "1.34.0" + features = [ "rt" ] [dev-dependencies] criterion = "~0.3" docopt = "~0.9.0" +tokio = { version = "1.34.0", features = ["rt-multi-thread", "macros"] } [[example]] bench = false