22 lines
656 B
TOML
22 lines
656 B
TOML
[package]
|
|
name = "test_helpers"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies] # In alphabetical order
|
|
dotenvy = "0.15.7"
|
|
parking_lot = "0.12"
|
|
tempfile = "3.7.0"
|
|
tracing-log = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
observability_deps = { path = "../observability_deps" }
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
async-trait = { version = "0.1.72", optional = true }
|
|
tokio = { version = "1.29.1", optional = true, default_features = false, features = ["time"] }
|
|
|
|
[features]
|
|
default = []
|
|
future_timeout = ["async-trait", "tokio"]
|