diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 52168de965910..0193932c1c2c2 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -33,7 +33,7 @@ snmalloc = ["snmalloc-rs"] [dependencies] anyhow = "1" -arrow = { version = "10.0" } +arrow = { version = "11.0" } arrow-flight = { version = "10.0" } async-trait = "0.1.41" ballista-core = { path = "../core", version = "0.6.0" } diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index c8269088e2890..b683ffb01a24f 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -28,7 +28,7 @@ repository = "https://github.com/apache/arrow-datafusion" rust-version = "1.59" [dependencies] -arrow = { version = "10.0" } +arrow = { version = "11.0" } ballista = { path = "../ballista/rust/client", version = "0.6.0", optional = true } clap = { version = "3", features = ["derive", "cargo"] } datafusion = { path = "../datafusion", version = "7.0.0" } diff --git a/datafusion-common/Cargo.toml b/datafusion-common/Cargo.toml index a69d5afd394c8..0baaefa40158e 100644 --- a/datafusion-common/Cargo.toml +++ b/datafusion-common/Cargo.toml @@ -38,7 +38,7 @@ jit = ["cranelift-module"] pyarrow = ["pyo3"] [dependencies] -arrow = { version = "10.0", features = ["prettyprint"] } +arrow = { version = "11.0", features = ["prettyprint"] } avro-rs = { version = "0.13", features = ["snappy"], optional = true } cranelift-module = { version = "0.82.0", optional = true } ordered-float = "2.10" diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml index 834d59b708ff5..e2c37f9586182 100644 --- a/datafusion-expr/Cargo.toml +++ b/datafusion-expr/Cargo.toml @@ -36,6 +36,6 @@ path = "src/lib.rs" [dependencies] ahash = { version = "0.7", default-features = false } -arrow = { version = "10.0", features = ["prettyprint"] } +arrow = { version = "11.0", features = ["prettyprint"] } datafusion-common = { path = "../datafusion-common", version = "7.0.0" } sqlparser = "0.15" diff --git a/datafusion-physical-expr/Cargo.toml b/datafusion-physical-expr/Cargo.toml index 692301b3309f5..b85ec4926f1bd 100644 --- a/datafusion-physical-expr/Cargo.toml +++ b/datafusion-physical-expr/Cargo.toml @@ -40,7 +40,7 @@ unicode_expressions = ["unicode-segmentation"] [dependencies] ahash = { version = "0.7", default-features = false } -arrow = { version = "10.0", features = ["prettyprint"] } +arrow = { version = "11.0", features = ["prettyprint"] } blake2 = { version = "^0.10.2", optional = true } blake3 = { version = "1.0", optional = true } chrono = { version = "0.4", default-features = false } diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index bdfc81e8b0322..f866a0e5d132b 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -55,7 +55,7 @@ unicode_expressions = ["datafusion-physical-expr/regex_expressions"] [dependencies] ahash = { version = "0.7", default-features = false } -arrow = { version = "10.0", features = ["prettyprint"] } +arrow = { version = "11.0", features = ["prettyprint"] } async-trait = "0.1.41" avro-rs = { version = "0.13", features = ["snappy"], optional = true } chrono = { version = "0.4", default-features = false }