-
Notifications
You must be signed in to change notification settings - Fork 175
/
Cargo.toml
99 lines (94 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[workspace.package]
version = "0.3.0"
edition = "2021"
homepage = "https://pelikan.io"
repository = "https://github.com/twitter/pelikan"
license = "Apache-2.0"
[workspace]
members = [
"src/common",
"src/config",
"src/core/admin",
"src/core/proxy",
"src/core/server",
"src/core/waker",
"src/entrystore",
"src/logger",
"src/macros",
"src/net",
"src/protocol/admin",
"src/protocol/common",
"src/protocol/http",
"src/protocol/memcache",
"src/protocol/ping",
"src/protocol/resp",
"src/protocol/thrift",
"src/proxy/momento",
"src/proxy/ping",
"src/proxy/thrift",
"src/queues",
"src/server/pingserver",
"src/server/segcache",
"src/session",
"src/storage/bloom",
"src/storage/datapool",
"src/storage/seg",
"src/storage/types",
]
[workspace.dependencies]
ahash = "0.8.0"
arrayvec = "0.7.2"
backtrace = "0.3.66"
bitvec = "1.0.1"
blake3 = "1.3.1"
boring = "2.1.0"
boring-sys = "2.1.0"
bstr = "1.0.1"
bytes = "1.2.1"
clap = "2.33.3"
crossbeam-channel = "0.5.6"
crossbeam-queue = "0.3.5"
foreign-types-shared = "0.3.1"
httparse = "1.8.0"
libc = "0.2.134"
log = "0.4.17"
memmap2 = "0.2.2"
metrohash = "1.0.6"
mio = "0.8.4"
nom = "5.1.2"
phf = "0.11.1"
proc-macro2 = "1.0.46"
quote = "1.0.21"
rand = "0.8.5"
rand_chacha = "0.3.1"
rand_xoshiro = "0.6.0"
rustcommon-logger = { git = "https://github.com/twitter/rustcommon", rev = "d550e01" }
rustcommon-metrics = { git = "https://github.com/twitter/rustcommon", rev = "d550e01" }
rustcommon-time = { git = "https://github.com/twitter/rustcommon", rev = "d550e01" }
serde = "1.0.145"
serde_json = "1.0.85"
slab = "0.4.7"
syn = "1.0.101"
thiserror = "1.0.24"
tiny_http = "0.11.0"
toml = "0.5.9"
twox-hash = { version = "1.6.3", default-features = false }
urlencoding = "2.1.2"
zookeeper = "0.6.1"
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.bench]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.dev]
debug = true
opt-level = 0