influxdb/influxdb3_py_api/Cargo.toml

32 lines
768 B
TOML

[package]
name = "influxdb3_py_api"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[features]
system-py = ["pyo3"]
[dependencies]
arrow-array.workspace = true
arrow-schema.workspace = true
influxdb3_id = { path = "../influxdb3_id" }
influxdb3_wal = { path = "../influxdb3_wal" }
influxdb3_catalog = {path = "../influxdb3_catalog"}
influxdb3_internal_api = { path = "../influxdb3_internal_api" }
iox_query_params.workspace = true
parking_lot.workspace = true
futures.workspace = true
tokio.workspace = true
[dependencies.pyo3]
version = "0.23.3"
# this is necessary to automatically initialize the Python interpreter
features = ["auto-initialize", "experimental-async"]
optional = true
[lints]
workspace = true