-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
103 lines (98 loc) · 2.02 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
100
101
102
103
[workspace.package]
version = "0.3.2"
edition = "2021"
homepage = "https://pelikan.io"
repository = "https://github.com/pelikan-io/pelikan"
license = "Apache-2.0"
[workspace]
resolver = "2"
members = [
"src/common",
"src/config",
"src/core/admin",
"src/core/proxy",
"src/core/server",
"src/entrystore",
"src/logger",
"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/server/pingserver",
"src/server/rds",
"src/server/segcache",
"src/session",
"src/storage/bloom",
"src/storage/datatier",
"src/storage/segcache",
"src/storage/types",
]
[workspace.dependencies]
ahash = "0.8.7"
arrayvec = "0.7.4"
awaken = "0.1.0"
backtrace = "0.3.69"
bitvec = "1.0.1"
blake3 = "1.5.0"
boring = "3.1.0"
boring-sys = "3.1.0"
bstr = "1.7.0"
bytes = "1.7.2"
clap = "4.4.6"
clocksource = "0.8.1"
crossbeam-channel = "0.5.8"
datatier = { path = "./src/storage/datatier", version = "0.1.0" }
httparse = "1.8.0"
libc = "0.2.149"
log = "0.4.20"
memmap2 = "0.9.0"
metriken = "0.7.0"
metrohash = "1.0.6"
mio = "0.8.11"
nom = "7.1.3"
openssl = "0.10.66"
openssl-sys = "0.9.103"
parking_lot = "0.12.1"
pelikan-net = { path = "./src/net", version = "0.4.1" }
phf = "0.11.2"
proc-macro2 = "1.0.69"
quote = "1.0.33"
rand = "0.8.5"
rand_chacha = "0.3.1"
rand_xoshiro = "0.6.0"
ringlog = "0.7.0"
serde = "1.0.189"
serde_json = "1.0.107"
signal-hook = "0.3.17"
slab = "0.4.9"
switchboard = "0.2.1"
syn = "2.0.38"
thiserror = "1.0.49"
tiny_http = "0.12.0"
toml = "0.8.2"
twox-hash = { version = "1.6.3", default-features = false }
urlencoding = "2.1.3"
[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