2020-05-01 16:52:00 +00:00
|
|
|
[package]
|
2020-11-05 18:44:36 +00:00
|
|
|
name = "test_helpers"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2020-05-01 16:52:00 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2023-03-23 02:02:33 +00:00
|
|
|
dotenvy = "0.15.7"
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2023-03-30 11:15:54 +00:00
|
|
|
tempfile = "3.5.0"
|
2022-01-26 10:28:51 +00:00
|
|
|
tracing-log = "0.1"
|
2021-10-25 15:01:39 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2021-04-02 20:14:30 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2023-03-30 10:14:36 +00:00
|
|
|
async-trait = { version = "0.1.68", optional = true }
|
2023-05-29 09:11:24 +00:00
|
|
|
tokio = { version = "1.28.2", optional = true, default_features = false, features = ["time"] }
|
2022-03-31 15:10:55 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
future_timeout = ["async-trait", "tokio"]
|