diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index ec9353ce1eff1..ed433d4ce3a3f 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 = "8.0.0" } +arrow-flight = { version = "9.0.0" } 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 0d81f32cbea90..8f0d29e208d30 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 = "8.0.0" } -arrow-flight = { version = "8.0.0" } +arrow = { version = "9.0.0" } +arrow-flight = { version = "9.0.0" } 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 40a07851928c9..448c854d9da7a 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -32,6 +32,6 @@ 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 = "8.0.0" } +arrow = { version = "9.0.0" } ballista = { path = "../ballista/rust/client", version = "0.6.0" } env_logger = "0.9" \ No newline at end of file diff --git a/datafusion-common/Cargo.toml b/datafusion-common/Cargo.toml index 081dc17a701da..a5573138f4f44 100644 --- a/datafusion-common/Cargo.toml +++ b/datafusion-common/Cargo.toml @@ -37,8 +37,8 @@ avro = ["avro-rs"] pyarrow = ["pyo3"] [dependencies] -arrow = { version = "8.0.0", features = ["prettyprint"] } -parquet = { version = "8.0.0", features = ["arrow"] } +arrow = { version = "9.0.0", features = ["prettyprint"] } +parquet = { version = "9.0.0", features = ["arrow"] } 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 88b602f9c441d..ebad6e253ba71 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 = "8.0.0" } +arrow-flight = { version = "9.0.0" } datafusion = { path = "../datafusion" } prost = "0.9" tonic = "0.6" diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml index aac76528b196a..c78493a15b24e 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 = "8.0.0", features = ["prettyprint"] } +arrow = { version = "9.0.0", features = ["prettyprint"] } sqlparser = "0.14" ahash = { version = "0.7", default-features = false } diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 63029a6ae66bb..d521ead929d4d 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -56,8 +56,8 @@ datafusion-common = { path = "../datafusion-common", version = "7.0.0" } datafusion-expr = { path = "../datafusion-expr", version = "7.0.0" } ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } -arrow = { version = "8.0.0", features = ["prettyprint"] } -parquet = { version = "8.0.0", features = ["arrow"] } +arrow = { version = "9.0.0", features = ["prettyprint"] } +parquet = { version = "9.0.0", 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 304cbfea8434e..ff0ba524cfa77 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 = "8.0.0", features = ["prettyprint"] } +arrow = { version = "9.0.0", features = ["prettyprint"] } rand = "0.8" env_logger = "0.9.0"