2022-11-30 21:28:23 +00:00
|
|
|
[package]
|
|
|
|
name = "ioxd_ingester2"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
2022-11-30 21:59:36 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2023-02-15 18:20:11 +00:00
|
|
|
arrow-flight = { workspace = true }
|
2022-11-30 21:59:36 +00:00
|
|
|
async-trait = "0.1"
|
2022-12-01 16:24:58 +00:00
|
|
|
clap_blocks = { path = "../clap_blocks" }
|
2023-01-31 11:33:50 +00:00
|
|
|
futures = "0.3.26"
|
2023-02-15 18:20:11 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-11-30 21:59:36 +00:00
|
|
|
hyper = "0.14"
|
|
|
|
ingester2 = { path = "../ingester2" }
|
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2022-12-01 14:32:58 +00:00
|
|
|
iox_query = { version = "0.1.0", path = "../iox_query" }
|
2022-11-30 21:59:36 +00:00
|
|
|
ioxd_common = { path = "../ioxd_common" }
|
|
|
|
metric = { path = "../metric" }
|
2022-12-01 14:32:58 +00:00
|
|
|
parquet_file = { version = "0.1.0", path = "../parquet_file" }
|
2022-12-19 10:33:32 +00:00
|
|
|
thiserror = "1.0.38"
|
2023-03-02 09:50:39 +00:00
|
|
|
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2023-02-13 10:10:53 +00:00
|
|
|
tokio-util = { version = "0.7.7" }
|
2022-11-30 21:59:36 +00:00
|
|
|
trace = { path = "../trace" }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|