2022-03-23 20:14:45 +00:00
|
|
|
[package]
|
|
|
|
name = "service_grpc_flight"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
datafusion = { path = "../datafusion" }
|
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" }
|
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2022-05-17 14:13:03 +00:00
|
|
|
arrow = { version = "14.0.0", features = ["prettyprint"] }
|
|
|
|
arrow-flight = "14.0.0"
|
2022-04-12 09:08:25 +00:00
|
|
|
bytes = "1.0"
|
2022-03-23 20:14:45 +00:00
|
|
|
futures = "0.3"
|
|
|
|
pin-project = "1.0"
|
2022-04-20 11:12:17 +00:00
|
|
|
prost = "0.10"
|
2022-03-23 20:14:45 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-05-04 14:10:35 +00:00
|
|
|
serde_json = "1.0.81"
|
2022-03-23 20:14:45 +00:00
|
|
|
snafu = "0.7"
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic = "0.7"
|
2022-03-23 20:14:45 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|