forked from cnosdb/cnosdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
200 lines (191 loc) · 4.74 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
[workspace]
default-members = ["main"]
members = [
"common/models",
"common/protos",
"common/protocol_parser",
"common/metrics",
"common/trace",
"common/trace_http",
"common/utils",
"common/http_protocol",
"common/error_code",
"common/error_code/error_code_macro",
"common/lru_cache",
"common/limiter_bucket",
"common/memory_pool",
"query_server/spi",
"query_server/query",
"query_server/test",
"query_server/sqllogicaltests",
"e2e_test",
"coordinator",
"config",
"meta",
"tskv",
"main",
"client",
]
[workspace.dependencies]
actix-rt = "2.7.0"
actix-web = "4.0.0"
aes = "0.8"
anyhow = "1"
async-backtrace = "0.2.2"
async-recursion = "1.0.0"
async-stream = "0.3"
async-trait = "0.1"
backtrace = "0.3"
base64 = { version = "0.13" }
bincode = "1.3.3"
blake3 = "1.3.3"
byteorder = "1.4.3"
bytes = "1.1"
bzip2 = "0.4.3"
cbc = "0.1.2"
chrono = "0.4"
clap = { version = "4", features = ["default", "derive"] }
color-eyre = "0.6"
console-subscriber = "0.1.8"
core_affinity = "0.5.10"
crc32fast = "1.3.0"
criterion = { version = "0.3.5" }
crossbeam-channel = "0.5"
ctrlc = "3"
dashmap = "5.2"
derive_builder = "0.11"
arrow = { version = "36.0.0", features = ["prettyprint"] }
arrow-schema = { version = "36.0.0", features = ["serde"] }
arrow-flight = { version = "36.0.0" }
datafusion-proto = { git = "https://github.com/cnosdb/arrow-datafusion.git", branch = "22.0.0" }
datafusion = { git = "https://github.com/cnosdb/arrow-datafusion.git", branch = "22.0.0" }
diff = "0.1.13"
dirs = "4.0.0"
env_logger = "0.9"
flatbuffers = "22.9"
flate2 = "1.0.24"
futures = { version = "0.3", default-features = false }
integer-encoding = "3.0.3"
lazy_static = "1.4"
libc = { version = "0.2", default-features = false }
md-5 = "0.10"
minivec = "0.4.0"
mio = "0.8"
moka = "0.9.6"
nom = "7.1.1"
num-traits = "0.2.14"
num_cpus = "1.13.0"
num_enum = "0.5.7"
object_store = { version = "0.5.2", features = ["aws", "gcp", "azure"] }
once_cell = "1.12.0"
openraft = { git = "https://github.com/datafuselabs/openraft", rev = "914fcb4dad32a2f187b808298048e9e8b912977f", features = ["serde"] }
openssl = { version = "0.10.48", features = ["vendored"] }
os_info = { version = "3" }
parking_lot = { version = "0.12" }
paste = "1.0"
pin-project = "1.0"
pprof = { version = "0.11.0", features = ["flamegraph", "protobuf-codec", "frame-pointer"] }
prost = "0.11.0"
prost-build = "0.11.0"
prost-types = { version = "0.11.2" }
protobuf = "3.2.0"
psutil = "3.2.2"
q_compress = "0.11.1"
radixdb = "0.2.5"
rand = "0.8"
regex = "1.5"
reqwest = { version = "0.11.11", features = ["json"] }
roaring = "0.10.1"
rsa = "0.7.2"
rustyline = "9.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
serial_test = "0.8.0"
sled = "0.34.7"
snafu = "0.7"
snap = "1.0.0"
static_assertions = "1.1"
sys-info = "0.9.1"
sysinfo = "0.28.4"
tempfile = "3"
tikv-jemalloc-ctl = "0.5"
tikv-jemalloc-sys = { version = "0.5", features = ["stats", "profiling", "unprefixed_malloc_on_supported_platforms"] }
tikv-jemallocator = "0.5.0"
time = { version = "0.3.7" }
tokio = { version = "1.21" }
tokio-stream = "0.1"
tokio-util = { version = "0.7.0" }
toml = "0.5.9"
tonic = "0.8"
tonic-build = "0.8"
tower = "0.4.13"
tracing = "0.1.35"
tracing-appender = "0.2.2"
tracing-error = "0.2.0"
tracing-futures = "0.2"
tracing-subscriber = "0.3.16"
url = "2.2"
uuid = "1.1"
walkdir = "2.3.2"
warp = "0.3.4"
winapi = "0.3.9"
windows = { version = "0.48.0" }
zstd = "0.11.2"
sqllogictest = "0.13.2"
duration-str = "0.5.0"
http = "0.2.9"
itertools = "0.10"
opentelemetry-jaeger = { version = "0.18.0" }
opentelemetry_sdk = { version = "0.19.0" }
opentelemetry_api = { version = "0.19.0" }
[workspace.package]
edition = "2021"
version = "2.3.1"
# When you want to debug a third-party library,
# you can use patch,
# which will use your local third-party library code
# [patch."https://github.com/cnosdb/arrow-datafusion"]
# datafusion = { path = "../arrow-datafusion/datafusion/core" }
# datafusion-proto = { path = "../arrow-datafusion/datafusion/proto" }
[profile.dev]
codegen-units = 16
debug = true
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = 'unwind'
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = "thin"
opt-level = 3
overflow-checks = false
panic = 'unwind'
[profile.test]
codegen-units = 16
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = 'unwind'
[profile.test-ci]
debug-assertions = false
incremental = true
inherits = "test"
overflow-checks = false
panic = 'unwind'
[profile.bench]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = false
opt-level = 3
overflow-checks = false
panic = 'unwind'