-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathCargo.toml
31 lines (26 loc) · 909 Bytes
/
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
[package]
name = "sql"
version = "0.1.0"
authors = ["CeresDB Authors <[email protected]>"]
[package.edition]
workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
test = []
[dependencies]
# In alphabetical order
arrow_deps = { path = "../arrow_deps" }
catalog = { path = "../catalog" }
common_types = { path = "../common_types"}
common_util = { path = "../common_util" }
df_operator = { path = "../df_operator" }
log = "0.4"
paste = "1.0"
snafu = { version ="0.6.10", features = ["backtraces"]}
sqlparser = "0.19.0"
table_engine = { path = "../table_engine" }
ceresdbproto = { git = "https://github.com/CeresDB/ceresdbproto.git", rev = "2c10152d021cd5a26b9c870cdede6a0317adca3d" }
regex = "1"
[dev-dependencies]
common_types = { path = "../common_types", features = ["test"] }
tokio = { version = "1.0", features = ["full"] }