29 lines
614 B
TOML
29 lines
614 B
TOML
[package]
|
|
name = "influxdb3_types"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# Core Crates
|
|
iox_http.workspace = true
|
|
iox_query_params.workspace = true
|
|
|
|
# Local deps
|
|
influxdb3_authz = { path = "../influxdb3_authz" }
|
|
influxdb3_cache = { path = "../influxdb3_cache" }
|
|
influxdb3_catalog = { path = "../influxdb3_catalog" }
|
|
|
|
# crates.io dependencies
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
serde.workspace = true
|
|
hashbrown.workspace = true
|
|
hex.workspace = true
|
|
hyper.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|