forked from databendlabs/databend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (60 loc) · 1.32 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
[workspace]
members = [
# Common
"common/arrow",
"common/base",
"common/building",
"common/cache",
"common/clickhouse-srv",
"common/containers",
"common/dal",
"common/dal2",
"common/datablocks",
"common/datavalues",
"common/datavalues2",
"common/exception",
"common/grpc",
"common/functions",
"common/infallible",
"common/io",
"common/macros",
"common/management",
"common/mem-allocator",
"common/planners",
"common/meta/api",
"common/meta/embedded",
"common/meta/raft-store",
"common/meta/sled-store",
"common/meta/types",
"common/streams",
"common/codegen",
"common/tracing",
"common/metrics",
# Query
"query",
# Meta
"metasrv",
# CLI
"cli",
# Tools
"tools/fuzz",
"tools/benchmark",
]
[profile.release]
debug = 1
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
[profile.release.package]
arrow2 = { codegen-units = 4 }
databend-query = { codegen-units = 4 }
[profile.bench]
debug = true
[profile.dev]
split-debuginfo = "unpacked"
[profile.dev.package]
addr2line = { opt-level = 3 }
adler = { opt-level = 3 }
backtrace = { opt-level = 3 }
gimli = { opt-level = 3 }
miniz_oxide = { opt-level = 3 }
object = { opt-level = 3 }
rustc-demangle = { opt-level = 3 }