diff --git a/Cargo.toml b/Cargo.toml index 8c399a8..8ade9ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stretto" -version = "0.8.2" +version = "0.8.3" authors = ["Al Liu "] description = "Stretto is a high performance thread-safe memory-bound Rust cache." homepage = "https://github.com/al8n/stretto" @@ -34,7 +34,6 @@ edition = "2021" [target.'cfg(target_family = "wasm")'.dependencies] getrandom = { version = "0.2", features = ["js"] } -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["sync"] full = ["sync", "async", "serde"] @@ -44,8 +43,8 @@ serde = ["dep:serde", "dep:serde_json"] [dependencies] atomic = "0.6" -async-channel = { version = "1.8", optional = true } -async-io = { version = "1.12", optional = true } +async-channel = { version = "2", optional = true } +async-io = { version = "2.3", optional = true } crossbeam-channel = { version = "0.5", optional = true } futures = { version = "0.3", optional = true } parking_lot = "0.12" @@ -61,7 +60,7 @@ xxhash-rust = { version = "0.8", features = ["xxh64"] } [dev-dependencies] serde = {version = "1", features = ["derive"] } serde_json = "1" -tokio = {version = "1.21", features = ["full"] } +tokio = {version = "1", features = ["full"] } async-std = { version = "1.12" } [package.metadata.docs.rs]