-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
41 lines (38 loc) · 1.14 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
[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.24.4"
license = "Apache-2.0"
authors = ["Databend Authors <[email protected]>"]
categories = ["database"]
keywords = ["databend", "database", "rust"]
repository = "https://github.com/databendlabs/bendsql"
[workspace.dependencies]
databend-client = { path = "core", version = "0.24.4" }
databend-driver = { path = "driver", version = "0.24.4" }
databend-driver-core = { path = "sql", version = "0.24.4" }
databend-driver-macros = { path = "macros", version = "0.24.4" }
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",
] }