diff --git a/Cargo.toml b/Cargo.toml index a590401..27c00b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stretto" -version = "0.7.0" +version = "0.7.1" authors = ["Al Liu "] description = "Stretto is a high performance thread-safe memory-bound Rust cache." homepage = "https://github.com/al8n/stretto" @@ -41,8 +41,8 @@ serilization = ["serde", "serde/derive", "serde_json/default"] [dependencies] atomic = "0.5" -async-channel = { version = "1.6", optional = true } -async-io = { version = "1.7", optional = true } +async-channel = { version = "1.7", optional = true } +async-io = { version = "1.9", optional = true } crossbeam-channel = { version = "0.5", optional = true } futures = { version = "0.3", optional = true } log = { version = "0.4", optional = true } @@ -51,14 +51,14 @@ rand = "0.8" serde = {version = "1", optional = true} serde_json = {version = "1", optional = true} seahash = "4.1" -wg = "0.2" +wg = "0.3" thiserror = "1" xxhash-rust = { version = "0.8", features = ["xxh64"] } [dev-dependencies] serde = {version = "1", features = ["serde_derive"]} serde_json = "1" -tokio = {version = "1.19", features = ["full"]} +tokio = {version = "1.21", features = ["full"]} async-std = { version = "1.12" } [package.metadata.docs.rs]