2022-03-24 12:53:25 +00:00
|
|
|
[package]
|
2022-05-12 18:50:23 +00:00
|
|
|
name = "test_helpers_end_to_end"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-03-24 12:53:25 +00:00
|
|
|
|
2022-04-21 18:17:33 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
2022-04-21 18:17:33 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2022-12-05 09:05:56 +00:00
|
|
|
assert_cmd = "2.0.7"
|
2022-11-22 08:23:24 +00:00
|
|
|
bytes = "1.3"
|
2022-08-19 21:19:28 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-03-24 12:53:25 +00:00
|
|
|
futures = "0.3"
|
2022-04-25 19:47:56 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-06-07 13:35:01 +00:00
|
|
|
http = "0.2.8"
|
2022-03-24 12:53:25 +00:00
|
|
|
hyper = "0.14"
|
2022-09-29 11:12:51 +00:00
|
|
|
influxdb_iox_client = { path = "../influxdb_iox_client", features = ["flight", "format"] }
|
2022-11-30 10:31:46 +00:00
|
|
|
nix = "0.26"
|
2022-04-22 10:01:20 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2023-01-02 17:07:15 +00:00
|
|
|
once_cell = { version = "1.17", features = ["parking_lot"] }
|
2022-04-21 18:17:33 +00:00
|
|
|
parking_lot = "0.12"
|
2022-08-09 17:30:44 +00:00
|
|
|
prost = "0.11"
|
2022-03-24 12:53:25 +00:00
|
|
|
rand = "0.8.3"
|
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
|
2022-06-17 10:28:28 +00:00
|
|
|
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
|
2022-03-24 12:53:25 +00:00
|
|
|
tempfile = "3.1.0"
|
2022-04-28 15:33:58 +00:00
|
|
|
test_helpers = { path = "../test_helpers", features = ["future_timeout"] }
|
2022-11-21 10:21:24 +00:00
|
|
|
tokio = { version = "1.22", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-04-21 18:17:33 +00:00
|
|
|
tokio-util = "0.7"
|
2022-08-09 17:30:44 +00:00
|
|
|
tonic = "0.8"
|
2022-03-24 12:53:25 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|