-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 852 Bytes
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
[package]
name = "resp-benchmark"
version = "0.2.4"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "_resp_benchmark_rust_lib"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.25.1", features = ["extension-module"] }
tokio = { version = "1", features = ["full"] }
redis = { version = "0", features = [
"tokio-comp",
"cluster",
"cluster-async",
# "tls-native-tls",
# "tokio-native-tls-comp",
] }
rand = { version = "0.8.5", features = [] }
rand_distr = "0.4.3"
nom = "7.1.3"
core_affinity = "0.8.1"
awaitgroup = "0.7.0"
colored = "2.1.0"
enum_delegate = "0.2.0"
ctrlc = "3.4.4"
urlencoding = "2.1.3"
governor = "0.10.0"
mlua = { version = "0.11", features = ["lua54", "send", "serde", "serialize", "vendored"] }
serde_json = "1.0.148"