-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (53 loc) · 1.3 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
[package]
name = "radonkv"
version = "0.1.1"
authors = ["Xu Shaohua <[email protected]>"]
description = "Distributed in-memory cache service"
edition = "2021"
categories = [
"concurrency",
"network-programming",
]
keywords = [
"cache",
"distributed",
"memory",
"redis",
]
repository = "https://github.com/xushaohua/radonkv"
homepage = "https://github.com/xushaohua/radonkv"
license = "AGPL-3.0-or-later"
readme = "./README.md"
rust-version = "1.78.0"
[features]
default = []
jemalloc = ["tikv-jemallocator"]
[dependencies]
atoi = "2.0.0"
bit-vec = "0.8.0"
bloomfilter = "1.0.14"
bytes = "1.7.2"
clap = { version = "4.5.17", features = ["derive"] }
hyperloglogplus = "0.4.1"
log = "0.4.22"
log4rs = { version = "1.3.0", features = ["all_components", "background_rotation", "gzip"] }
rand = "0.8.5"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
stdext = "0.3.3"
thiserror = "1.0.63"
tikv-jemallocator = { version = "0.6.0", features = ["background_threads"], optional = true }
tokio = { version = "1.40.0", features = ["full"] }
toml = "0.8.19"
[target.'cfg(unix)'.dependencies]
nc = "0.9.3"
[profile.dev]
codegen-units = 1
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = "symbols"
[profile.release-with-debug]
inherits = "release"
debug = "full"