24 lines
544 B
TOML
24 lines
544 B
TOML
[package]
|
|
name = "redis-rs"
|
|
version = "0.0.1"
|
|
authors = ["Pin Fang <fpfangpin@hotmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.59"
|
|
bytes = "1.3.0"
|
|
thiserror = "1.0.32"
|
|
tokio = { version = "1.23.0", features = ["full"] }
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
byteorder = "1.4.3"
|
|
futures = "0.3"
|
|
redb = "2.1.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3.3"
|
|
chacha20poly1305 = "0.10.1"
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
|
|
[dev-dependencies]
|
|
redis = { version = "0.24", features = ["aio", "tokio-comp"] }
|