From 7f9e991217f370fc7bf4fedc9fac1d6ee2dcb127 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 3 Feb 2023 10:15:10 +0100 Subject: [PATCH] Minimize tokio features to what's actually needed --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1a3d809..114e517 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,12 +15,13 @@ celes = "2.1" chrono = { version = "0.4.23", features = ["serde"] } quick-xml = { version = "0.26", features = [ "serialize" ] } serde = { version = "1.0", features = ["derive"] } -tokio = { version = "1.0", features = [ "full" ] } +tokio = { version = "1.0", features = ["io-util", "net", "time"] } tokio-rustls = { version = "0.23", optional = true } tracing = "0.1.29" webpki-roots = "0.22.1" [dev-dependencies] regex = "1.5" +tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } tokio-test = "0.4" tracing-subscriber = "0.3.3"