This commit is contained in:
2021-09-03 23:32:40 -05:00
commit 121b5b1985
5 changed files with 941 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "test-redis"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
redis = { version = "0.21.0", features = ["tokio-comp"] }
tokio = { "version" = "0.2", features = ["rt-threaded", "macros"] }
tokio-util = { version = "0.6", optional = true }
async-std = { version = "1.5.0", optional = true }
async-trait = "0.1.24"
futures-util = { version = "0.3.0", default-features = false, optional = true }
futures = { version = "0.3.3", optional = true }