influxdb/test_helpers/Cargo.toml

21 lines
614 B
TOML

[package]
name = "test_helpers"
version = "0.1.0"
authors = ["Paul Dix <paul@pauldix.net>"]
edition = "2021"
[dependencies] # In alphabetical order
dotenv = "0.15.0"
parking_lot = "0.12"
tempfile = "3.1.0"
tracing-log = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
observability_deps = { path = "../observability_deps" }
workspace-hack = { path = "../workspace-hack"}
async-trait = { version = "0.1.53", optional = true }
tokio = { version = "1.18.2", optional = true, default_features = false, features = ["time"] }
[features]
default = []
future_timeout = ["async-trait", "tokio"]