influxdb/influxdb3_write/Cargo.toml

67 lines
1.7 KiB
TOML

[package]
name = "influxdb3_write"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# Core Crates
data_types.workspace = true
datafusion_util.workspace = true
influxdb-line-protocol.workspace = true
iox_catalog.workspace = true
iox_http.workspace = true
iox_query.workspace = true
iox_time.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_id = { path = "../influxdb3_id" }
influxdb3_test_helpers = { path = "../influxdb3_test_helpers" }
influxdb3_wal = { path = "../influxdb3_wal" }
influxdb3_telemetry = { path = "../influxdb3_telemetry" }
# 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
[dev-dependencies]
# Core Crates
arrow_util.workspace = true
insta.workspace = true
metric.workspace = true
pretty_assertions.workspace = true
test_helpers.workspace = true
test-log.workspace = true