diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index c59cd1ea4e48d..ee41669ed08b0 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -43,7 +43,7 @@ tonic = "0.5" uuid = { version = "0.8", features = ["v4"] } chrono = "0.4" -arrow-flight = { version = "6.2.0" } +arrow-flight = { version = "6.3.0" } datafusion = { path = "../../../datafusion", version = "6.0.0" } diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index f190392223a3a..6717a0a12f5c1 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 = "6.2.0" } -arrow-flight = { version = "6.2.0" } +arrow = { version = "6.3.0" } +arrow-flight = { version = "6.3.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 54f3084293ce2..0434f090da014 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -31,5 +31,5 @@ clap = "2.33" rustyline = "9.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] } datafusion = { path = "../datafusion", version = "6.0.0" } -arrow = { version = "6.2.0" } +arrow = { version = "6.3.0" } ballista = { path = "../ballista/rust/client", version = "0.6.0" } diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index bca0ec5660303..3e8a6ec77f6d9 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 = "6.2.0" } +arrow-flight = { version = "6.3.0" } datafusion = { path = "../datafusion" } prost = "0.8" tonic = "0.5" diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 390dab43160de..fbe84e3ed0a0d 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -52,8 +52,8 @@ avro = ["avro-rs", "num-traits"] [dependencies] ahash = "0.7" hashbrown = { version = "0.11", features = ["raw"] } -arrow = { version = "6.2.0", features = ["prettyprint"] } -parquet = { version = "6.2.0", features = ["arrow"] } +arrow = { version = "6.3.0", features = ["prettyprint"] } +parquet = { version = "6.3.0", features = ["arrow"] } sqlparser = "0.12" paste = "^1.0" num_cpus = "1.13.0"