50 lines
1.3 KiB
TOML
50 lines
1.3 KiB
TOML
[package]
|
|
name = "influxdb3_processing_engine"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
chrono.workspace = true
|
|
cron.workspace = true
|
|
data_types.workspace = true
|
|
futures-util.workspace = true
|
|
humantime.workspace = true
|
|
hashbrown.workspace = true
|
|
hyper.workspace = true
|
|
iox_time.workspace = true
|
|
influxdb3_catalog = { path = "../influxdb3_catalog" }
|
|
influxdb3_client = { path = "../influxdb3_client" }
|
|
influxdb3_internal_api = { path = "../influxdb3_internal_api" }
|
|
influxdb3_py_api = { path = "../influxdb3_py_api" }
|
|
influxdb3_types = { path = "../influxdb3_types" }
|
|
influxdb3_sys_events = { path = "../influxdb3_sys_events"}
|
|
influxdb3_wal = { path = "../influxdb3_wal" }
|
|
influxdb3_write = { path = "../influxdb3_write" }
|
|
observability_deps.workspace = true
|
|
parking_lot.workspace = true
|
|
reqwest.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dependencies.pyo3]
|
|
version = "0.23.3"
|
|
|
|
[dev-dependencies]
|
|
datafusion_util.workspace = true
|
|
iox_query.workspace = true
|
|
influxdb3_cache = { path = "../influxdb3_cache" }
|
|
metric.workspace = true
|
|
object_store.workspace = true
|
|
parquet_file.workspace = true
|
|
tempfile.workspace = true
|
|
test-log.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|