-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
42 lines (38 loc) · 929 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
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "sqlrs"
version = "0.4.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
arrow = { version = "28", features = ["prettyprint", "simd"] }
tokio = { version = "1", features = ["full"] }
futures-async-stream = "0.2"
futures = "0.3"
thiserror = "1"
sqlparser = { version = "0.28", features = ["serde"] }
itertools = "0.10"
downcast-rs = "1"
paste = "1"
rustyline = "10"
dirs = "4"
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
petgraph = "0.6"
enum_dispatch = "0.3"
lazy_static = "1"
strum = "0.24"
strum_macros = "0.24"
ordered-float = "3.0"
derive-new = "0.5.9"
log = "0.4"
env_logger = "0.10"
derive_builder = "0.12.0"
async-stream = "0.3"
[dev-dependencies]
test-case = "2"
pretty_assertions = "1.3.0"
[workspace]
members = [
"tests/sqllogictest",
"tests/sqlplannertest",
]