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
|
2023-03-31 07:33:54 +00:00
|
|
|
authz = { path = "../authz" }
|
2022-03-23 20:14:45 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2023-01-24 18:24:32 +00:00
|
|
|
flightsql = { path = "../flightsql" }
|
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-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"] }
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
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"] }
|
2023-04-13 10:07:32 +00:00
|
|
|
serde_json = "1.0.96"
|
2022-03-23 20:14:45 +00:00
|
|
|
snafu = "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" }
|
2022-06-13 09:36:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-11-23 00:33:49 +00:00
|
|
|
assert_matches = "1"
|
2023-05-22 13:08:20 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
metric = { path = "../metric" }
|
|
|
|
tokio = { version = "1.28", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|