-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 962 Bytes
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 962 Bytes
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
[workspace]
members = [
"editor",
"drivers/core",
"drivers/postgres",
"drivers/mysql",
"drivers/sqlite",
"drivers/duckdb",
"drivers/databend",
]
resolver = "2"
[workspace.dependencies]
async-trait = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
chrono = "0.4"
uuid = "1"
anyhow = "1"
tokio = { version = "1", features = ["rt-multi-thread"] }
tokio-postgres = { version = "0.7", features = ["array-impls", "with-chrono-0_4", "with-serde_json-1", "with-uuid-1"] }
postgres_rustls = "0.1"
rustls = "0.23"
rustls-native-certs = "0.7"
rustls-pemfile = "2"
rusqlite = { version = "0.34", features = ["bundled"] }
mysql_async = { version = "0.36", default-features = false, features = ["default-rustls-ring"] }
duckdb = { version = "1.10503.0", features = ["bundled"] }
databend-driver = "0.34"
sqlparser = "0.56"
toml = "0.8"
tokio-stream = "0.1"
[profile.dist]
inherits = "release"
lto = "thin"