influxdb/influxdb3_write/Cargo.toml

80 lines
2.1 KiB
TOML

[package]
name = "influxdb3_write"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[features]
"system-py" = ["influxdb3_py_api/system-py", "pyo3"]
[dependencies]
# Core Crates
data_types.workspace = true
datafusion_util.workspace = true
executor.workspace = true
influxdb-line-protocol.workspace = true
iox_catalog.workspace = true
iox_http.workspace = true
iox_query.workspace = true
iox_time.workspace = true
metric.workspace = true
parquet_file.workspace = true
observability_deps.workspace = true
schema.workspace = true
# Local deps
influxdb3_cache = { path = "../influxdb3_cache" }
influxdb3_catalog = { path = "../influxdb3_catalog" }
influxdb3_client = { path = "../influxdb3_client" }
influxdb3_id = { path = "../influxdb3_id" }
influxdb3_internal_api = { path = "../influxdb3_internal_api" }
influxdb3_test_helpers = { path = "../influxdb3_test_helpers" }
influxdb3_wal = { path = "../influxdb3_wal" }
influxdb3_telemetry = { path = "../influxdb3_telemetry" }
influxdb3_py_api = {path = "../influxdb3_py_api"}
# crates.io dependencies
anyhow.workspace = true
arrow.workspace = true
async-trait.workspace = true
byteorder.workspace = true
bytes.workspace = true
bimap.workspace = true
chrono.workspace = true
crc32fast.workspace = true
crossbeam-channel.workspace = true
dashmap.workspace = true
datafusion.workspace = true
futures.workspace = true
futures-util.workspace = true
hashbrown.workspace = true
hex.workspace = true
indexmap.workspace = true
object_store.workspace = true
parking_lot.workspace = true
parquet.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
sha2.workspace = true
snap.workspace = true
thiserror.workspace = true
tokio.workspace = true
url.workspace = true
uuid.workspace = true
[dependencies.pyo3]
version = "0.23.3"
# this is necessary to automatically initialize the Python interpreter
features = ["auto-initialize"]
optional = true
[dev-dependencies]
# Core Crates
arrow_util.workspace = true
insta.workspace = true
pretty_assertions.workspace = true
test_helpers.workspace = true
test-log.workspace = true