forked from databendlabs/databend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
141 lines (129 loc) · 3.63 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
[workspace.package]
version = "0.1.0"
authors = ["Databend Authors <[email protected]>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[workspace]
members = [
# Binaries
"src/binaries",
# Common
"src/common/arrow",
"src/common/base",
"src/common/building",
"src/common/cache",
"src/common/exception",
"src/common/grpc",
"src/common/hashtable",
"src/common/http",
"src/common/io",
"src/common/macros",
"src/common/metrics",
"src/common/tracing",
"src/common/storage",
# Query
"src/query/ast",
"src/query/codegen",
"src/query/config",
"src/query/catalog",
"src/query/datablocks",
"src/query/sharing",
"src/query/datavalues",
"src/query/expression",
"src/query/formats",
"src/query/functions",
"src/query/functions-v2",
"src/query/legacy-parser",
"src/query/management",
"src/query/planner",
"src/query/pipeline/core",
"src/query/pipeline/sinks",
"src/query/pipeline/sources",
"src/query/pipeline/transforms",
"src/query/legacy-expression",
"src/query/legacy-planners",
"src/query/settings",
"src/query/sql",
"src/query/storages/cache",
"src/query/storages/constants",
"src/query/storages/fuse",
"src/query/storages/fuse-meta",
"src/query/storages/hive",
"src/query/storages/hive-meta-store",
"src/query/storages/index",
"src/query/storages/preludes",
"src/query/storages/factory",
"src/query/storages/share",
"src/query/streams",
"src/query/users",
# databend-query
"src/query/service",
# Meta
"src/meta/api",
"src/meta/app",
"src/meta/embedded",
"src/meta/raft-store",
"src/meta/sled-store",
"src/meta/stoerr",
"src/meta/store",
"src/meta/types",
# meta proto
"src/meta/proto-conv",
"src/meta/protos",
# databend-meta
"src/meta/service",
# Hack
# This crate is used to hack our cargo.lock to resovle CVEs and so on.
"src/workspace-hack",
]
[workspace.dependencies]
# databend maintains:
openraft = { git = "https://github.com/drmingdrmer/openraft", tag = "v0.7.4-alpha.3" }
sled = { git = "https://github.com/datafuse-extras/sled", tag = "v0.34.7-datafuse.1", default-features = false }
# error
anyhow = { version = "1.0.65" }
anyerror = { version = "=0.1.7" }
thiserror = { version = "1" }
# CLI
clap = { version = "3.2.22", features = ["derive", "env"] }
# serialization
prost = { version = "0.11.0" }
serde = { version = "1.0.145", features = ["derive", "rc"] }
serde_json = { version = "1.0.85", default-features = false, features = ["preserve_order"] }
[profile.release]
debug = 1
lto = "thin"
overflow-checks = false
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
[profile.release.package]
arrow2 = { codegen-units = 4 }
common-functions = { codegen-units = 16 }
databend-query = { codegen-units = 4 }
[profile.bench]
debug = true
overflow-checks = false
[profile.dev]
split-debuginfo = "unpacked"
overflow-checks = false
[profile.test]
opt-level = 0
debug = 0
codegen-units = 16
lto = false
incremental = true
debug-assertions = true
overflow-checks = true
rpath = false
[profile.dev.package]
addr2line = { opt-level = 3 }
adler = { opt-level = 3 }
gimli = { opt-level = 3 }
miniz_oxide = { opt-level = 3 }
object = { opt-level = 3 }
rustc-demangle = { opt-level = 3 }
[patch.crates-io]
# If there are dependencies that need patching, they can be listed below.
# For example:
# arrow-format = { git = "https://github.com/datafuse-extras/arrow-format", rev = "78dacc1" }
arrow-format = { git = "https://github.com/datafuse-extras/arrow-format", rev = "78dacc1" }