Skip to content

Commit

Permalink
0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Feb 12, 2024
1 parent d958dad commit 1e5603f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stretto"
version = "0.8.2"
version = "0.8.3"
authors = ["Al Liu <[email protected]>"]
description = "Stretto is a high performance thread-safe memory-bound Rust cache."
homepage = "https://github.com/al8n/stretto"
Expand Down Expand Up @@ -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"]
Expand All @@ -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"
Expand All @@ -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]
Expand Down

0 comments on commit 1e5603f

Please sign in to comment.