feat: Use workspace dep inheritance for the arrow-flight crate

pull/24376/head
Carol (Nichols || Goulding) 2022-10-24 14:03:55 -04:00
parent 3145e2c05b
commit 88c3a1f5e7
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
6 changed files with 6 additions and 5 deletions

View File

@ -109,6 +109,7 @@ license = "MIT OR Apache-2.0"
[workspace.dependencies]
arrow = { version = "25.0.0" }
arrow-flight = { version = "25.0.0" }
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", rev="48f73c6af3b0cc747c38b4a9c7a610f4630e8736", default-features = false }
datafusion-proto = { git = "https://github.com/apache/arrow-datafusion.git", rev="48f73c6af3b0cc747c38b4a9c7a610f4630e8736" }

View File

@ -20,5 +20,5 @@ snafu = "0.7"
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
arrow-flight = "25.0.0"
arrow-flight = { workspace = true }
rand = "0.8.3"

View File

@ -12,7 +12,7 @@ format = ["arrow", "arrow_util"]
[dependencies]
arrow = { workspace = true, optional = true }
arrow-flight = { version = "25.0.0", optional = true }
arrow-flight = { workspace = true, optional = true }
arrow_util = { path = "../arrow_util", optional = true }
bytes = "1.2"
client_util = { path = "../client_util" }

View File

@ -7,7 +7,7 @@ license.workspace = true
[dependencies]
arrow = { workspace = true, features = ["prettyprint"] }
arrow-flight = "25.0.0"
arrow-flight = { workspace = true }
arrow_util = { path = "../arrow_util" }
async-trait = "0.1.58"
backoff = { path = "../backoff" }

View File

@ -24,7 +24,7 @@ iox_time = { path = "../iox_time" }
trace = { path = "../trace" }
# Crates.io dependencies, in alphabetical order
arrow-flight = "25.0.0"
arrow-flight = { workspace = true }
async-trait = "0.1"
hyper = "0.14"
thiserror = "1.0.37"

View File

@ -20,7 +20,7 @@ tracker = { path = "../tracker" }
# Crates.io dependencies, in alphabetical order
arrow = { workspace = true, features = ["prettyprint"] }
arrow-flight = "25.0.0"
arrow-flight = { workspace = true }
bytes = "1.2"
futures = "0.3"
pin-project = "1.0"