2022-03-23 20:14:45 +00:00
|
|
|
[package]
|
|
|
|
name = "service_grpc_flight"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-03-23 20:14:45 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2022-05-25 16:24:28 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2022-03-23 20:14:45 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2022-04-12 09:08:25 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-03-23 20:14:45 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-12-20 17:34:00 +00:00
|
|
|
prost-types = { version = "0.11", features = ["std"] }
|
2022-05-18 09:38:35 +00:00
|
|
|
iox_query = { path = "../iox_query" }
|
2022-03-23 20:14:45 +00:00
|
|
|
service_common = { path = "../service_common" }
|
2022-07-15 07:50:28 +00:00
|
|
|
trace = { path = "../trace"}
|
2022-07-28 12:53:12 +00:00
|
|
|
trace_http = { path = "../trace_http"}
|
2022-06-13 09:36:50 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2022-03-23 20:14:45 +00:00
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
2023-01-20 11:16:19 +00:00
|
|
|
arrow-flight = { workspace = true, features=["flight-sql-experimental"] }
|
2022-11-22 08:23:24 +00:00
|
|
|
bytes = "1.3"
|
2022-03-23 20:14:45 +00:00
|
|
|
futures = "0.3"
|
2022-08-09 17:30:44 +00:00
|
|
|
prost = "0.11"
|
2022-03-23 20:14:45 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-12-19 01:44:18 +00:00
|
|
|
serde_json = "1.0.91"
|
2022-03-23 20:14:45 +00:00
|
|
|
snafu = "0.7"
|
2023-01-10 09:48:44 +00:00
|
|
|
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-08-09 17:30:44 +00:00
|
|
|
tonic = "0.8"
|
2022-03-23 20:14:45 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-06-13 09:36:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
metric = { path = "../metric" }
|
2022-11-23 00:33:49 +00:00
|
|
|
assert_matches = "1"
|