-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
44 lines (40 loc) · 1.24 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
[workspace]
default-members = ["core", "sql", "driver", "macros", "cli"]
members = [
"core",
"sql",
"driver",
"macros",
"cli",
"bindings/python",
"bindings/nodejs",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.22.2"
license = "Apache-2.0"
authors = ["Databend Authors <opensource@databend.com>"]
categories = ["database"]
keywords = ["databend", "database", "rust"]
repository = "https://github.com/databendlabs/bendsql"
[workspace.dependencies]
databend-client = { path = "core", version = "0.22.2" }
databend-driver = { path = "driver", version = "0.22.2" }
databend-driver-core = { path = "sql", version = "0.22.2" }
databend-driver-macros = { path = "macros", version = "0.22.2" }
tokio-stream = "0.1"
chrono = { version = "0.4.35", default-features = false, features = ["clock"] }
arrow = { version = "53.0" }
arrow-array = { version = "53.0" }
arrow-schema = { version = "53.0" }
arrow-flight = { version = "53.0", features = ["flight-sql-experimental"] }
tonic = { version = "0.12", default-features = false, features = [
"transport",
"codegen",
"tls",
"tls-webpki-roots",
"prost",
] }
[patch.crates-io]
pyo3-asyncio = { git = "https://github.com/everpcpc/pyo3-asyncio", rev = "42af887" }