This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d720f4  [MINOR] Update arrow-rs dependencies (#33)
9d720f4 is described below

commit 9d720f47d3de3d756b13715c4078b8d0a1640251
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri Apr 23 07:19:39 2021 -0400

    [MINOR] Update arrow-rs dependencies (#33)
    
    * Bring in latest arrow-rs dependencies
    
    * Update refs in other crates
    
    * update ballista deps
---
 ballista/rust/benchmarks/tpch/Cargo.toml | 4 ++--
 ballista/rust/client/Cargo.toml          | 2 +-
 ballista/rust/core/Cargo.toml            | 4 ++--
 ballista/rust/executor/Cargo.toml        | 5 ++---
 ballista/rust/scheduler/Cargo.toml       | 2 +-
 benchmarks/Cargo.toml                    | 4 ++--
 datafusion-examples/Cargo.toml           | 4 ++--
 datafusion/Cargo.toml                    | 4 ++--
 8 files changed, 14 insertions(+), 15 deletions(-)

diff --git a/ballista/rust/benchmarks/tpch/Cargo.toml 
b/ballista/rust/benchmarks/tpch/Cargo.toml
index 8d62e20..601943d 100644
--- a/ballista/rust/benchmarks/tpch/Cargo.toml
+++ b/ballista/rust/benchmarks/tpch/Cargo.toml
@@ -28,8 +28,8 @@ edition = "2018"
 ballista = { path="../../client" }
 datafusion = { path = "../../../../datafusion" }
 
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
-parquet = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
+parquet = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
 
 env_logger = "0.8"
 tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }
diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml
index 6ac8687..fdce1c4 100644
--- a/ballista/rust/client/Cargo.toml
+++ b/ballista/rust/client/Cargo.toml
@@ -31,5 +31,5 @@ futures = "0.3"
 log = "0.4"
 tokio = "1.0"
 
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
 datafusion = { path = "../../../datafusion" }
diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index e9d7682..5a77691 100644
--- a/ballista/rust/core/Cargo.toml
+++ b/ballista/rust/core/Cargo.toml
@@ -40,8 +40,8 @@ tokio = "1.0"
 tonic = "0.4"
 uuid = { version = "0.8", features = ["v4"] }
 
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
-arrow-flight = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
+arrow-flight = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
 
 datafusion = { path = "../../../datafusion" }
 
diff --git a/ballista/rust/executor/Cargo.toml 
b/ballista/rust/executor/Cargo.toml
index 79ceabe..3df5f6b 100644
--- a/ballista/rust/executor/Cargo.toml
+++ b/ballista/rust/executor/Cargo.toml
@@ -45,8 +45,8 @@ tokio-stream = "0.1"
 tonic = "0.4"
 uuid = { version = "0.8", features = ["v4"] }
 
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
-arrow-flight = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
+arrow-flight = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
 
 datafusion = { path = "../../../datafusion" }
 
@@ -57,4 +57,3 @@ configure_me_codegen = "0.4.0"
 
 [package.metadata.configure_me.bin]
 executor = "executor_config_spec.toml"
-
diff --git a/ballista/rust/scheduler/Cargo.toml 
b/ballista/rust/scheduler/Cargo.toml
index ce8ca09..6c7fc58 100644
--- a/ballista/rust/scheduler/Cargo.toml
+++ b/ballista/rust/scheduler/Cargo.toml
@@ -52,7 +52,7 @@ tonic = "0.4"
 tower = { version = "0.4" }
 warp = "0.3"
 
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
 datafusion = { path = "../../../datafusion" }
 
 [dev-dependencies]
diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index 66a81be..6eb6ab9 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -31,8 +31,8 @@ simd = ["datafusion/simd"]
 snmalloc = ["snmalloc-rs"]
 
 [dependencies]
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
-parquet = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
+parquet = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
 datafusion = { path = "../datafusion" }
 structopt = { version = "0.3", default-features = false }
 tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread"] }
diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml
index 7f7c239..929bdf2 100644
--- a/datafusion-examples/Cargo.toml
+++ b/datafusion-examples/Cargo.toml
@@ -29,8 +29,8 @@ publish = false
 
 
 [dev-dependencies]
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
-arrow-flight = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
+arrow-flight = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd" }
 datafusion = { path = "../datafusion" }
 prost = "0.7"
 tonic = "0.4"
diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml
index 443bd7e..eaa7031 100644
--- a/datafusion/Cargo.toml
+++ b/datafusion/Cargo.toml
@@ -50,8 +50,8 @@ unicode_expressions = ["unicode-segmentation"]
 [dependencies]
 ahash = "0.7"
 hashbrown = "0.11"
-arrow = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f", 
features = ["prettyprint"] }
-parquet = { git = "https://github.com/apache/arrow-rs";, rev = "08a662f", 
features = ["arrow"] }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd", features = ["prettyprint"] }
+parquet = { git = "https://github.com/apache/arrow-rs";, rev = 
"c3fe3bab9905739fdda75301dab07a18c91731bd", features = ["arrow"] }
 sqlparser = "0.9.0"
 clap = "2.33"
 rustyline = {version = "7.0", optional = true}

Reply via email to