forked from risingwavelabs/risingwave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (43 loc) · 803 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
38
39
40
41
42
43
44
45
[workspace]
members = [
"src/batch",
"src/bench",
"src/cmd",
"src/cmd_all",
"src/common",
"src/compute",
"src/connector",
"src/ctl",
"src/expr",
"src/frontend",
"src/frontend/test_runner",
"src/meta",
"src/prost",
"src/prost/helpers",
"src/risedevtool",
"src/rpc_client",
"src/source",
"src/sqlparser",
"src/sqlparser/test_runner",
"src/storage",
"src/storage/compactor",
"src/storage/hummock_sdk",
"src/stream",
"src/tests/regress",
"src/utils/logging",
"src/utils/memcomparable",
"src/utils/pgwire",
"src/utils/value-encoding",
"src/workspace-hack",
]
[profile.bench]
opt-level = 3
debug = false
codegen-units = 1
lto = 'thin'
incremental = false
debug-assertions = false
overflow-checks = false
rpath = false
[profile.release]
debug = true