2022-01-17 20:38:03 +00:00
|
|
|
[package]
|
|
|
|
name = "ingester"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-01-17 20:38:03 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
2023-01-19 15:16:13 +00:00
|
|
|
arrow-flight = { workspace = true }
|
2022-01-24 17:00:23 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2023-01-31 10:18:27 +00:00
|
|
|
async-trait = "0.1.64"
|
2022-02-23 17:58:16 +00:00
|
|
|
backoff = { path = "../backoff" }
|
2022-11-22 08:23:24 +00:00
|
|
|
bytes = "1.3"
|
2022-10-28 14:34:23 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
|
|
|
data_types = { path = "../data_types" }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2022-04-21 13:00:13 +00:00
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2022-10-28 14:34:23 +00:00
|
|
|
dml = { path = "../dml" }
|
2022-11-07 11:01:58 +00:00
|
|
|
flatbuffers = "22.9.29"
|
2022-01-26 20:46:03 +00:00
|
|
|
futures = "0.3"
|
2022-01-27 19:44:20 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
2022-01-21 23:02:19 +00:00
|
|
|
hyper = "0.14"
|
2022-01-18 21:11:25 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2022-10-28 14:34:23 +00:00
|
|
|
iox_query = { path = "../iox_query" }
|
|
|
|
iox_time = { path = "../iox_time" }
|
2022-01-21 23:02:19 +00:00
|
|
|
metric = { path = "../metric" }
|
2022-01-19 01:57:13 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch"}
|
2022-03-01 01:00:45 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2022-12-06 07:53:54 +00:00
|
|
|
object_store = "0.5.2"
|
2022-02-18 17:42:49 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-10-28 14:34:23 +00:00
|
|
|
once_cell = "1"
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2022-01-28 16:56:48 +00:00
|
|
|
parquet_file = { path = "../parquet_file" }
|
2022-02-18 09:35:29 +00:00
|
|
|
pin-project = "1.0"
|
2022-01-20 23:22:41 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2022-08-09 17:30:44 +00:00
|
|
|
prost = "0.11"
|
2022-10-28 14:34:23 +00:00
|
|
|
rand = "0.8.5"
|
2022-01-20 23:22:41 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-10-28 14:49:24 +00:00
|
|
|
service_grpc_catalog = { path = "../service_grpc_catalog"}
|
2022-01-19 01:57:13 +00:00
|
|
|
snafu = "0.7"
|
2022-01-21 23:02:19 +00:00
|
|
|
thiserror = "1.0"
|
2023-01-30 01:57:27 +00:00
|
|
|
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2022-10-28 14:34:23 +00:00
|
|
|
tokio-util = { version = "0.7.4" }
|
2022-08-09 17:30:44 +00:00
|
|
|
tonic = { version = "0.8" }
|
2022-10-28 14:34:23 +00:00
|
|
|
trace = { path = "../trace" }
|
2022-02-23 15:33:47 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-01-18 23:10:42 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-02-03 11:47:28 +00:00
|
|
|
write_buffer = { path = "../write_buffer" }
|
2022-04-06 15:13:21 +00:00
|
|
|
write_summary = { path = "../write_summary" }
|
2022-11-16 18:11:39 +00:00
|
|
|
mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" }
|
2022-01-25 23:29:16 +00:00
|
|
|
|
2022-01-26 15:22:51 +00:00
|
|
|
[dev-dependencies]
|
2022-03-17 17:19:45 +00:00
|
|
|
assert_matches = "1.5.0"
|
2022-10-21 12:25:43 +00:00
|
|
|
lazy_static = "1.4.0"
|
2022-12-19 10:31:05 +00:00
|
|
|
paste = "1.0.11"
|
2022-03-31 18:33:49 +00:00
|
|
|
test_helpers = { path = "../test_helpers", features = ["future_timeout"] }
|
2022-10-12 12:37:24 +00:00
|
|
|
tokio-stream = {version = "0.1.11", default_features = false }
|