-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
37 lines (34 loc) · 900 Bytes
/
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
[workspace]
members = [
"deps/ccommon/rust/ccommon-array",
"deps/ccommon/rust/ccommon-backend",
"deps/ccommon/rust/ccommon-buffer",
"deps/ccommon/rust/ccommon-channel",
"deps/ccommon/rust/ccommon-derive",
"deps/ccommon/rust/ccommon-log",
"deps/ccommon/rust/ccommon-rs",
"deps/ccommon/rust/ccommon-stats",
"deps/ccommon/rust/ccommon-stream",
"deps/ccommon/rust/ccommon-sys",
"src/client/pingclient-rs",
"src/rust/config",
"src/rust-util/httpencode",
"src/rust-util/pelikan",
"src/rust-util/pelikan-sys",
"src/rustcore",
"src/server/pingserver-rs",
"src/server/twemcache-http",
"src/storage/cdb/cdbgen",
"src/storage/cdb/cdb_rs",
"test/server/twemcache-http"
]
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.dev]
debug = true
opt-level = 0