forked from KipData/KiteSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (50 loc) · 1.09 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "kip-sql"
version = "0.1.0"
edition = "2021"
[lib]
doctest = false
[dependencies]
log = "^0.4"
sqlparser = "0.34.0"
thiserror = "1"
parking_lot = "0.12.1"
itertools = "0.10"
sqllogictest = "0.11.1"
rust_decimal = "1"
paste = "1.0.11"
tracing = "0.1.37"
pin-project = "1.1.0"
chrono = "0.4.26"
roaring = "0.10.1"
educe = "0.4"
num-traits = "0.2"
num-derive = "0.3"
anyhow = "1.0.71"
tokio = { version = "1.28.2", features = ["full"] }
tokio-process = "0.2.5"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
async-trait = "0.1.68"
integer-encoding = "3.0.4"
arrow = { version = "28", features = ["prettyprint", "simd"] }
strum_macros = "0.24"
ordered-float = "3.0"
petgraph = "0.6.3"
futures-async-stream = "0.2.6"
async-channel = "1.8.0"
async-backtrace = "0.2.6"
futures = "0.3.25"
futures-lite = "1.12.0"
ahash = "0.8.3"
[dev-dependencies]
tokio-test = "0.4.2"
ctor = "0.2.0"
env_logger = "0.10"
paste = "^1.0"
rstest = "0.17"
[workspace]
members = [
"tests/sqllogictest",
]