diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index ed433d4ce3a3..6181d731a071 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -45,7 +45,7 @@ chrono = { version = "0.4", default-features = false } clap = { version = "3", features = ["derive", "cargo"] } parse_arg = "0.1.3" -arrow-flight = { version = "9.0.0" } +arrow-flight = { version = "9.1" } datafusion = { path = "../../../datafusion", version = "7.0.0" } parking_lot = "0.12" diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 0884dd7c88c1..27ba56eded96 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -29,8 +29,8 @@ edition = "2018" snmalloc = ["snmalloc-rs"] [dependencies] -arrow = { version = "9.0.0" } -arrow-flight = { version = "9.0.0" } +arrow = { version = "9.1" } +arrow-flight = { version = "9.1" } anyhow = "1" async-trait = "0.1.36" ballista-core = { path = "../core", version = "0.6.0" } diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index b04ff152b5fa..c9cb5e3a858a 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "3", features = ["derive", "cargo"] } rustyline = "9.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] } datafusion = { path = "../datafusion", version = "7.0.0" } -arrow = { version = "9.0.0" } +arrow = { version = "9.1" } ballista = { path = "../ballista/rust/client", version = "0.6.0", optional=true } env_logger = "0.9" mimalloc = { version = "*", default-features = false } \ No newline at end of file diff --git a/datafusion-common/Cargo.toml b/datafusion-common/Cargo.toml index 9678efb41c9e..f08923674c35 100644 --- a/datafusion-common/Cargo.toml +++ b/datafusion-common/Cargo.toml @@ -38,8 +38,8 @@ pyarrow = ["pyo3"] jit = ["cranelift-module"] [dependencies] -arrow = { version = "9.0.0", features = ["prettyprint"] } -parquet = { version = "9.0.0", features = ["arrow"], optional = true } +arrow = { version = "9.1", features = ["prettyprint"] } +parquet = { version = "9.1", features = ["arrow"], optional = true } avro-rs = { version = "0.13", features = ["snappy"], optional = true } pyo3 = { version = "0.15", optional = true } sqlparser = "0.14" diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index ebad6e253ba7..9e38df221e60 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -34,7 +34,7 @@ path = "examples/avro_sql.rs" required-features = ["datafusion/avro"] [dev-dependencies] -arrow-flight = { version = "9.0.0" } +arrow-flight = { version = "9.1" } datafusion = { path = "../datafusion" } prost = "0.9" tonic = "0.6" diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml index c78493a15b24..44926a13b997 100644 --- a/datafusion-expr/Cargo.toml +++ b/datafusion-expr/Cargo.toml @@ -36,6 +36,6 @@ path = "src/lib.rs" [dependencies] datafusion-common = { path = "../datafusion-common", version = "7.0.0" } -arrow = { version = "9.0.0", features = ["prettyprint"] } +arrow = { version = "9.1", features = ["prettyprint"] } sqlparser = "0.14" ahash = { version = "0.7", default-features = false } diff --git a/datafusion-physical-expr/Cargo.toml b/datafusion-physical-expr/Cargo.toml index 85cd66fca831..efb4c7097c41 100644 --- a/datafusion-physical-expr/Cargo.toml +++ b/datafusion-physical-expr/Cargo.toml @@ -41,7 +41,7 @@ unicode_expressions = ["unicode-segmentation"] [dependencies] datafusion-common = { path = "../datafusion-common", version = "7.0.0" } datafusion-expr = { path = "../datafusion-expr", version = "7.0.0" } -arrow = { version = "9.0.0", features = ["prettyprint"] } +arrow = { version = "9.1", features = ["prettyprint"] } paste = "^1.0" ahash = { version = "0.7", default-features = false } ordered-float = "2.10" diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 9a270199dc90..38883040291f 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -60,8 +60,8 @@ datafusion-jit = { path = "../datafusion-jit", version = "7.0.0", optional = tru datafusion-physical-expr = { path = "../datafusion-physical-expr", version = "7.0.0" } ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } -arrow = { version = "9.0.0", features = ["prettyprint"] } -parquet = { version = "9.0.0", features = ["arrow"] } +arrow = { version = "9.1", features = ["prettyprint"] } +parquet = { version = "9.1", features = ["arrow"] } sqlparser = "0.14" paste = "^1.0" num_cpus = "1.13.0" diff --git a/datafusion/fuzz-utils/Cargo.toml b/datafusion/fuzz-utils/Cargo.toml index ff0ba524cfa7..20723f5ba718 100644 --- a/datafusion/fuzz-utils/Cargo.toml +++ b/datafusion/fuzz-utils/Cargo.toml @@ -23,6 +23,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -arrow = { version = "9.0.0", features = ["prettyprint"] } +arrow = { version = "9.1", features = ["prettyprint"] } rand = "0.8" env_logger = "0.9.0"