-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
66 lines (60 loc) · 1.36 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "clia-rcproxy"
version = "2.2.1"
authors = ["clia <[email protected]>", "wayslog <[email protected]>"]
description = "A lightweight, fast and powerful Redis Cluster Proxy written in Rust."
homepage = "https://github.com/clia/rcproxy"
repository = "https://github.com/clia/rcproxy"
license = "MIT"
readme = "README.md"
categories = ["asynchronous", "network-programming", "caching", "database"]
keywords = ["redis", "cluster", "proxy"]
edition = "2021"
[[bin]]
name = "rcproxy"
path = "bin/proxy.rs"
[lib]
name = "libaster"
path = "src/lib.rs"
[[bench]]
name = "aster_bench"
harness = false
[dev-dependencies]
assert2 = "0.1.1"
criterion = "0.2"
[dependencies]
bitflags = "1.3.2"
btoi = "0.4.2"
byteorder = "1.4.3"
chrono = "0.4.23"
env_logger = "0.9.3"
failure = "0.1.8"
get_if_addrs = "0.5.3"
hashbrown = "0.13.1"
hotwatch = "0.4.6"
itoa = "1.0.4"
lazy_static = "1.1"
log = "0.4.17"
md5 = "0.7"
net2 = "0.2.38"
prometheus = "0.13.3"
rayon = "1.2.0"
serde = "1.0.147"
serde_derive = "1.0.147"
sysinfo = "0.26.7"
toml = "0.5.9"
rand = "0.8.5"
aho-corasick = "0.7.19"
time = { version = "0.3.17", features = ["macros", "local-offset"] }
clia-tracing-config = "0.2.5"
# 未升级
futures = "0.1"
clap = { version = "2.33.0", features = ["yaml"] }
bytes = "0.4"
actix-rt = "0.2.5"
actix-web = "1.0"
tokio = "0.1"
tokio-codec = "0.1"
[profile.release]
debug = true
lto = true