-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (43 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "redis-proto"
version = "0.1.0"
edition = "2021"
[lib]
name = "redis_proto"
path = "src/lib.rs"
[[bin]]
name = "redis-proto"
path = "src/main.rs"
[dependencies]
tokio = { version = " 1.36.0", features = ["full", "tracing"] }
tokio-util = { version = "0.7.11", features = ["codec"] }
shlex = "1.3.0"
promptly = "0.3.1"
bytes = { version = "1.0.0", features = ["serde"] }
structopt = "0.3.5"
sloggers = "2.2.0"
lazy_static = "1.4.0"
slog = "2.5.2"
dashmap = { version = "4.0.2", features = ["serde"] }
memchr = "2.3.0"
serde = { version = "1.0.188", features = ["derive", "rc"] }
parking_lot = { version = "0.12.3", features = ["serde"] }
directories = "5.0.1"
rmp-serde = "0.15"
smallvec = "1.4.1"
seahash = "3.0.6"
growable-bloom-filter = "2.1.1"
amadeus-streaming = "0.4.3"
futures = "0.3.31"
futures-util = "0.3.1"
# x9 ={ path = "../x9" }
x9 ={ git = "https://github.com/obaraelijah/x9" }
num-traits = "0.2.14"
time = "0.3"
[dev-dependencies]
proptest = "1.5.0"
pretty_assertions = "1.4.1"
criterion = { version = "0.4.0", features = ["html_reports"] }
[[bench]]
name = "keys_benchmark"
harness = false