-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (40 loc) · 1.06 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
[package]
name = "redis-proxy"
version = "0.1.0"
edition = "2021"
[lib]
name = "redis_proxy"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.35.1", features = ["full"] }
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.10", features = ["codec"] }
log = "0.4.20"
anyhow = "1.0.79"
bytes = "1.5.0"
redis-codec-core = { path = "../redis-codec-core" }
env_logger = "0.11.0"
redis-proxy-common = { path = "../redis-proxy-common" }
redis-command-gen = { path = "../redis-command-gen" }
redis-command = { path = "../redis-command" }
regex = "1.10.3"
serde = { version = "1.0.197", features = ["derive"] }
toml = "0.8.10"
async-trait = "0.1.77"
futures = "0.3.30"
poolx = "0.1.3"
prometheus_exporter = "0.8.5"
lazy_static = "1.4.0"
etcd-client = "0.12.4"
arc-swap = "1.7.0"
serde_json = "1.0.114"
dashmap = "5.5.3"
smol_str = "0.2.1"
bitflags = "2.5.0"
socket2 = "0.5.6"
tonic = "0.10.2"
hyper = "1.3.1"
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
uuid = { version = "1.8.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
flume = "0.11.0"