-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
66 lines (60 loc) · 1.25 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 = "aster-proxy"
version = "1.3.4"
authors = ["wayslog <[email protected]>"]
description = "A light, fast and powerful cache proxy written in Rust."
homepage = "https://github.com/wayslog/aster"
repository = "https://github.com/wayslog/aster"
documentation = "https://docs.rs/aster"
license = "MIT"
readme = "README.md"
categories = ["asynchronous", "network-programming", "caching", "database"]
keywords = [ "cache", "redis", "memcache", "twemproxy"]
edition="2018"
[[bin]]
name = "aster-proxy"
path = "bin/proxy.rs"
[lib]
name = "libaster"
path = "src/lib.rs"
[[bench]]
name="aster_bench"
harness = false
[dev-dependencies]
criterion = "0.2"
assert2 = "0.1.1"
[dependencies]
byteorder = "1.3.2"
tokio = "0.1"
tokio-codec="0.1"
log="0.4"
env_logger="0.6"
bytes="0.4"
lazy_static="1.1"
btoi="0.4"
futures= "0.1"
toml="0.4"
serde="1.0"
serde_derive="1.0"
itoa= "0.4.4"
net2="0.2"
md5="0.6"
hashbrown = "0.3.0"
num_cpus = "1.8"
failure="0.1"
slab="0.4"
bitflags = "1.0.4"
aho-corasick = "0.7.6"
rand = "0.7.1"
clap = {version = "2.33.0", features = ["yaml"]}
get_if_addrs = "0.5.3"
prometheus = "0.7.0"
actix-web = "1.0"
actix-rt = "0.2.5"
sysinfo = "0.9.5"
rayon = "1.2.0"
hotwatch = "0.4.3"
chrono = "0.4.15"
[profile.release]
debug = true
lto = true