Minimize tokio features to what's actually needed

This commit is contained in:
Dirkjan Ochtman 2023-02-03 10:15:10 +01:00
parent 75f466c1ce
commit 7f9e991217
1 changed files with 2 additions and 1 deletions

View File

@ -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"