diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index 1f23a2a42e2a..0e6d207399cc 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -40,7 +40,7 @@ tokio = "1.0" tonic = "0.4" uuid = { version = "0.8", features = ["v4"] } -arrow-flight = { version = "4.0" } +arrow-flight = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } datafusion = { path = "../../../datafusion" } diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 7574fca82774..0149f832e9e2 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -44,8 +44,8 @@ tokio-stream = "0.1" tonic = "0.4" uuid = { version = "0.8", features = ["v4"] } -arrow = { version = "4.0" } -arrow-flight = { version = "4.0" } +arrow = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } +arrow-flight = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } datafusion = { path = "../../../datafusion" } diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index cd17b61984d5..08cc7a6076a7 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -31,4 +31,4 @@ clap = "2.33" rustyline = "8.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] } datafusion = { path = "../datafusion" } -arrow = { version = "4.0" } +arrow = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index 886f8f5e74f6..de9ae1616a5a 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -29,7 +29,7 @@ publish = false [dev-dependencies] -arrow-flight = { version = "4.0" } +arrow-flight = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } datafusion = { path = "../datafusion" } prost = "0.7" tonic = "0.4" diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 0668ec016ba1..7c5986d2f30f 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -46,8 +46,10 @@ unicode_expressions = ["unicode-segmentation"] [dependencies] ahash = "0.7" hashbrown = "0.11" -arrow = { version = "4.0", features = ["prettyprint"] } -parquet = { version = "4.0", features = ["arrow"] } +# arrow = { version = "4.0", features = ["prettyprint"] } +# parquet = { version = "4.0", features = ["arrow"] } +arrow = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0", features = ["prettyprint"] } +parquet = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0", features = ["arrow"] } sqlparser = "0.9.0" paste = "^1.0" num_cpus = "1.13.0"