-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.27 KB
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
[package]
name = "aster-proxy"
version = "1.3.4"
authors = ["wayslog <zxs867179@gmail.com>"]
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", "proxy"]
edition = "2021"
[[bin]]
name = "aster-proxy"
path = "bin/proxy.rs"
[lib]
name = "libaster"
path = "src/lib.rs"
[dependencies]
anyhow = "1"
clap = { version = "4.4", features = ["derive"] }
once_cell = "1.18"
axum = { version = "0.7", default-features = false, features = ["tokio", "http1"] }
prometheus = "0.13"
serde = { version = "1.0", features = ["derive"] }
sysinfo = "0.29"
toml = "0.8"
tokio = { version = "1.34", features = ["full"] }
tokio-stream = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
async-trait = "0.1"
hashbrown = "0.16"
parking_lot = "0.12"
bytes = "1"
tokio-util = { version = "0.7", features = ["codec"] }
crc16 = "0.4"
futures = "0.3"
md5 = "0.7"
rand = "0.8"
socket2 = "0.5"
arc-swap = "1"
smallvec = "1.11"
ahash = "0.8"
[profile.release]
debug = true
lto = true