forked from apache/horaedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (65 loc) · 1.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
[package]
name = "ceresdb"
version = "0.1.0"
authors = ["CeresDB Authors <ceresdbservice@gmail.com>"]
edition = "2018"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
# In alphabetical order
members = [
"analytic_engine",
"arrow_deps",
"benchmarks",
"catalog",
"catalog_impls",
"common_types",
"common_util",
"components/arena",
"components/bytes",
"components/logger",
"components/object_store",
"components/parquet",
"components/profile",
"components/skiplist",
"components/tracing",
"components/tracing_util",
"components/tracing_examples",
"df_operator",
"grpcio",
"interpreters",
"meta_client",
"proto",
"query_engine",
"server",
"sql",
"system_catalog",
"table_engine",
"wal",
]
[[bin]]
name = "ceresdb-server"
[dependencies]
# Workspace dependencies, in alphabetical order
analytic_engine = { path = "analytic_engine" }
catalog = { path = "catalog" }
catalog_impls = { path = "catalog_impls" }
clap = "2.0"
common_util = { path = "common_util" }
df_operator = { path = "df_operator" }
log = "0.4"
logger = { path = "components/logger" }
query_engine = { path = "query_engine" }
server = { path = "server" }
table_engine = { path = "table_engine" }
tracing_util = { path = "components/tracing_util" }
# Crates.io dependencies, in alphabetical order
signal-hook = "0.3"
[build-dependencies]
vergen = { version = "5", default-features = false, features = ["build", "git"] }
[profile.release]
debug = true
opt-level = 2
overflow-checks = true
[profile.bench]
debug = true