-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (43 loc) · 1.2 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
[package]
name = "joinery"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
trace = ["peg/trace"]
[dependencies]
anstream = "0.6.4"
async-rusqlite = "0.4.0"
async-trait = "0.1.73"
clap = { version = "4.4.6", features = ["derive", "wrap_help"] }
codespan-reporting = "0.11.1"
csv = "1.2.2"
dbcrossbar_trino = { version = "0.2.4", features = [
"macros",
"values",
"client",
"rustls-tls",
] }
derive-visitor = "0.4.0"
glob = "0.3.1"
joinery_macros = { path = "joinery_macros" }
once_cell = "1.18.0"
owo-colors = "4.0.0-rc.1"
peg = "0.8.2"
phf = { version = "0.11.2", features = ["macros"] }
rand = "0.8.4"
regex = "1.10.0"
rusqlite = { version = "0.29.0", features = ["bundled", "functions", "vtab"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.49"
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "fmt"] }
[dev-dependencies]
cli_test_dir = "0.1.5"
pretty_assertions = "1.4.0"
[workspace]
members = ["joinery_macros"]