33 lines
859 B
TOML
33 lines
859 B
TOML
[package]
|
|
name = "influxdb3_process"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# Core Crates
|
|
iox_time.workspace = true
|
|
metric.workspace = true
|
|
tokio_metrics_bridge.workspace = true
|
|
|
|
# Crates.io dependencies
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
|
|
# Optional Dependencies
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
tikv-jemalloc-ctl = { version = "0.5.4", optional = true }
|
|
tikv-jemallocator = { version = "0.5", optional = true, features = ["unprefixed_malloc_on_supported_platforms"] }
|
|
|
|
[features]
|
|
default = ["jemalloc_replacing_malloc"]
|
|
|
|
# Use jemalloc as the allocator.
|
|
jemalloc_replacing_malloc = ["tikv-jemallocator", "tikv-jemalloc-ctl"]
|
|
|
|
[lints]
|
|
workspace = true
|