k2v-client/Cargo.toml: Make tokio dep match other packages.

This commit is contained in:
Jonathan Davies 2023-05-09 14:33:00 +01:00
parent b925f53dc3
commit c9d26e8c50
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ hyper-rustls = { version = "0.23", default-features = false, features = [ "http1
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
tokio = "1.24"
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
# cli deps
clap = { version = "4.1", optional = true, features = ["derive", "env"] }