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"] }
|
2023-01-19 18:48:23 +00:00
|
|
|
arrow-flight = { workspace = true }
|
2022-04-21 18:17:33 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2023-07-17 10:57:18 +00:00
|
|
|
assert_cmd = "2.0.12"
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2022-08-19 21:19:28 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2023-02-13 21:36:59 +00:00
|
|
|
dml = { path = "../dml" }
|
2022-03-24 12:53:25 +00:00
|
|
|
futures = "0.3"
|
2022-04-25 19:47:56 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2023-02-20 02:54:56 +00:00
|
|
|
http = "0.2.9"
|
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"] }
|
2023-05-12 15:35:29 +00:00
|
|
|
ingester_query_grpc = { path = "../ingester_query_grpc" }
|
2023-05-04 10:48:18 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2023-02-13 21:36:59 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
|
|
mutable_batch_pb = { path = "../mutable_batch_pb" }
|
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-06-05 02:03:15 +00:00
|
|
|
once_cell = { version = "1.18", 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"
|
2023-07-06 12:48:27 +00:00
|
|
|
regex = "1.9"
|
2022-03-24 12:53:25 +00:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
|
2022-12-22 18:56:53 +00:00
|
|
|
snafu = "0.7"
|
2023-07-19 12:18:57 +00:00
|
|
|
sqlx = { version = "0.7.1", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
|
2023-07-21 09:06:34 +00:00
|
|
|
tempfile = "3.7.0"
|
2022-04-28 15:33:58 +00:00
|
|
|
test_helpers = { path = "../test_helpers", features = ["future_timeout"] }
|
2023-06-28 13:18:08 +00:00
|
|
|
tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-04-21 18:17:33 +00:00
|
|
|
tokio-util = "0.7"
|
2023-04-12 16:07:19 +00:00
|
|
|
tonic = { workspace = true }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|