feat: Use workspace dep inheritance for the arrow-flight crate
parent
3145e2c05b
commit
88c3a1f5e7
|
|
@ -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" }
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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" }
|
||||
|
|
|
|||
|
|
@ -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" }
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue