24 lines
757 B
TOML
24 lines
757 B
TOML
[package]
|
|
name = "flightsql"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# 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"] }
|
|
arrow_util = { path = "../arrow_util" }
|
|
datafusion = { workspace = true }
|
|
observability_deps = { path = "../observability_deps" }
|
|
iox_query = { path = "../iox_query" }
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
|
bytes = "1.5"
|
|
snafu = "0.7"
|
|
once_cell = { version = "1", default-features = false }
|
|
prost = "0.11"
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|