Skip to content

Commit

Permalink
fix #27
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Sep 28, 2022
1 parent 5c3c972 commit 7279bdd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stretto"
version = "0.7.0"
version = "0.7.1"
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 @@ -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 }
Expand All @@ -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]
Expand Down

0 comments on commit 7279bdd

Please sign in to comment.