diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 4eba2a152328..9a24bbf2903e 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -29,7 +29,7 @@ edition = "2018" snmalloc = ["snmalloc-rs"] [dependencies] -arrow = { version = "8.0.0" } +arrow = { version = "11.1.0" } arrow-flight = { version = "8.0.0" } anyhow = "1" async-trait = "0.1.36" diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index 57afa2fd13e5..15c6ff24af02 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -31,5 +31,5 @@ clap = { version = "3", features = ["derive", "cargo"] } rustyline = "9.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] } datafusion = { path = "../datafusion", version = "6.0.0" } -arrow = { version = "8.0.0" } +arrow = { version = "11.1.0" } ballista = { path = "../ballista/rust/client", version = "0.6.0" } diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 422a776448d9..fe28dd4c1ce6 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -52,7 +52,7 @@ avro = ["avro-rs", "num-traits"] [dependencies] ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } -arrow = { version = "8.0.0", features = ["prettyprint"] } +arrow = { version = "11.1.0", features = ["prettyprint"] } parquet = { version = "8.0.0", features = ["arrow"] } sqlparser = "0.13" paste = "^1.0"