2023-01-24 18:24:32 +00:00
|
|
|
[package]
|
|
|
|
name = "flightsql"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
|
|
|
arrow-flight = { workspace = true, features = ["flight-sql-experimental"] }
|
|
|
|
datafusion = { workspace = true }
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
|
|
|
iox_query = { path = "../iox_query" }
|
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2023-01-24 18:24:32 +00:00
|
|
|
futures = "0.3"
|
|
|
|
snafu = "0.7"
|
|
|
|
prost = "0.11"
|
2023-03-02 09:50:39 +00:00
|
|
|
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2023-01-24 18:24:32 +00:00
|
|
|
tonic = "0.8"
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|