forked from apache/horaedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
156 lines (148 loc) · 4.26 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
[package]
name = "ceresdb"
version = "1.0.0"
authors = ["CeresDB Authors <[email protected]>"]
edition = "2021"
[workspace.package]
version = "1.0.0"
authors = ["CeresDB Authors <[email protected]>"]
edition = "2021"
[workspace]
# In alphabetical order
members = [
"analytic_engine",
"benchmarks",
"catalog",
"catalog_impls",
"cluster",
"common_types",
"common_util",
"components/arena",
"components/arrow_ext",
"components/bytes_ext",
"components/logger",
"components/message_queue",
"components/object_store",
"components/parquet_ext",
"components/profile",
"components/skiplist",
"components/table_kv",
"components/tracing_util",
"df_operator",
"integration_tests",
"interpreters",
"meta_client",
"query_engine",
"remote_engine_client",
"router",
"server",
"sql",
"system_catalog",
"table_engine",
"tools",
"wal",
]
[[bin]]
name = "ceresdb-server"
path = "src/bin/ceresdb-server.rs"
[workspace.dependencies]
arrow = { version = "32.0.0", features = ["prettyprint"] }
arrow_ipc = { version = "32.0.0" }
arrow_ext = { path = "components/arrow_ext" }
analytic_engine = { path = "analytic_engine" }
arena = { path = "components/arena" }
async-trait = "0.1.53"
base64 = "0.13"
bytes = "1.1.0"
bytes_ext = { path = "components/bytes_ext" }
catalog = { path = "catalog" }
catalog_impls = { path = "catalog_impls" }
ceresdbproto = "1.0.1"
chrono = "0.4"
clap = "3.0"
clru = "0.6.1"
cluster = { path = "cluster" }
criterion = "0.3"
common_types = { path = "common_types" }
common_util = { path = "common_util" }
datafusion = "18.0.0"
datafusion-expr = "18.0.0"
datafusion-optimizer = "18.0.0"
datafusion-proto = "18.0.0"
df_operator = { path = "df_operator" }
env_logger = "0.6"
futures = "0.3"
xorfilter-rs = { git = "https://github.com/datafuse-extras/xorfilter", features = [
"cbordata",
], tag = "databend-alpha.4" }
lazy_static = "1.4.0"
log = "0.4"
logger = { path = "components/logger" }
lru = "0.7.6"
interpreters = { path = "interpreters" }
meta_client = { path = "meta_client" }
object_store = { path = "components/object_store" }
parquet_ext = { path = "components/parquet_ext" }
parquet = { version = "32.0.0" }
paste = "1.0"
profile = { path = "components/profile" }
prometheus = "0.12"
prometheus-static-metric = "0.5"
prost = "0.11"
query_engine = { path = "query_engine" }
rand = "0.7"
remote_engine_client = { path = "remote_engine_client" }
router = { path = "router" }
snafu = { version = "0.6.10", features = ["backtraces"] }
serde = "1.0"
serde_json = "1.0.60"
server = { path = "server" }
smallvec = "1.6"
slog = "2.7"
sql = { path = "sql" }
sqlparser = { version = "0.30", features = ["serde"] }
system_catalog = { path = "system_catalog" }
table_engine = { path = "table_engine" }
table_kv = { path = "components/table_kv" }
tempfile = "3.1.0"
tracing_util = { path = "components/tracing_util" }
tonic = "0.8.1"
tokio = { version = "1.25", features = ["full"] }
wal = { path = "wal" }
message_queue = { path = "components/message_queue" }
zstd = { version = "0.12", default-features = false }
[dependencies]
analytic_engine = { workspace = true }
catalog = { workspace = true }
catalog_impls = { workspace = true }
clap = { workspace = true }
cluster = { workspace = true }
common_util = { workspace = true }
df_operator = { workspace = true }
interpreters = { workspace = true }
log = { workspace = true }
logger = { workspace = true }
meta_client = { workspace = true }
query_engine = { workspace = true }
router = { workspace = true }
serde = { workspace = true }
server = { workspace = true }
signal-hook = "0.3"
sort = "0.8.5"
table_engine = { workspace = true }
tracing_util = { workspace = true }
[build-dependencies]
vergen = { version = "7", default-features = false, features = ["build", "git", "rustc"] }
# This profile optimizes for good runtime performance.
[profile.release]
# reference: https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units
codegen-units = 1
debug = true
overflow-checks = true
# This profile is used to produce a smaller (no symbols) binary with a little bit poorer performance,
# but with a faster speed and low memory consumption required by compiling.
[profile.release-slim]
inherits = "release"
codegen-units = 16
debug = false
strip = true