16 lines
558 B
TOML
16 lines
558 B
TOML
[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 }
|