-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 800 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 800 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
[package]
name = "databend-python"
publish = false
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
authors = { workspace = true }
[lib]
crate-type = ["cdylib"]
name = "databend_driver"
doc = false
[dependencies]
chrono = { workspace = true }
databend-client = { workspace = true }
databend-driver = { workspace = true, features = ["rustls", "flight-sql"] }
databend-driver-core = { workspace = true }
tokio-stream = { workspace = true }
ctor = "0.2"
env_logger = "0.11.8"
http = "1.0"
once_cell = "1.21"
pyo3 = { version = "0.24.2", features = ["extension-module", "chrono", "jiff-02"] }
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
tokio = "1.44"
[features]
default = ["py39-abi"]
py39-abi = ["pyo3/abi3-py39"]
cp38 = []