You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2021/04/18 16:25:35 UTC

[arrow-datafusion] branch master updated: Update Ballsita dependencies on arrow-rs

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

agrove 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 dbf4178  Update Ballsita dependencies on arrow-rs
dbf4178 is described below

commit dbf4178846a4fbe0274670fa7162c7e281f591c0
Author: Andy Grove <an...@gmail.com>
AuthorDate: Sun Apr 18 10:25:23 2021 -0600

    Update Ballsita dependencies on arrow-rs
---
 rust/ballista/rust/benchmarks/tpch/Cargo.toml | 6 +++---
 rust/ballista/rust/client/Cargo.toml          | 4 ++--
 rust/ballista/rust/core/Cargo.toml            | 5 +++--
 rust/ballista/rust/executor/Cargo.toml        | 5 +++--
 rust/ballista/rust/scheduler/Cargo.toml       | 2 +-
 5 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/rust/ballista/rust/benchmarks/tpch/Cargo.toml b/rust/ballista/rust/benchmarks/tpch/Cargo.toml
index 822d101..9a7d651 100644
--- a/rust/ballista/rust/benchmarks/tpch/Cargo.toml
+++ b/rust/ballista/rust/benchmarks/tpch/Cargo.toml
@@ -26,10 +26,10 @@ edition = "2018"
 
 [dependencies]
 ballista = { path="../../client" }
-
-arrow = { path = "../../../../arrow"  }
 datafusion = { path = "../../../../datafusion" }
-parquet = { path = "../../../../parquet"  }
+
+arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
+parquet = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
 
 env_logger = "0.8"
 tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }
diff --git a/rust/ballista/rust/client/Cargo.toml b/rust/ballista/rust/client/Cargo.toml
index de3effe..bf40cdb 100644
--- a/rust/ballista/rust/client/Cargo.toml
+++ b/rust/ballista/rust/client/Cargo.toml
@@ -31,5 +31,5 @@ futures = "0.3"
 log = "0.4"
 tokio = "1.0"
 
-arrow = { path = "../../../arrow"  }
-datafusion = { path = "../../../datafusion" }
\ No newline at end of file
+arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
+datafusion = { path = "../../../datafusion" }
diff --git a/rust/ballista/rust/core/Cargo.toml b/rust/ballista/rust/core/Cargo.toml
index e37a1ea..58e6d22 100644
--- a/rust/ballista/rust/core/Cargo.toml
+++ b/rust/ballista/rust/core/Cargo.toml
@@ -40,8 +40,9 @@ tokio = "1.0"
 tonic = "0.4"
 uuid = { version = "0.8", features = ["v4"] }
 
-arrow = { path = "../../../arrow"  }
-arrow-flight = { path = "../../../arrow-flight"  }
+arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
+arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
+
 datafusion = { path = "../../../datafusion" }
 
 [dev-dependencies]
diff --git a/rust/ballista/rust/executor/Cargo.toml b/rust/ballista/rust/executor/Cargo.toml
index 6b05b7c..ccf30cf 100644
--- a/rust/ballista/rust/executor/Cargo.toml
+++ b/rust/ballista/rust/executor/Cargo.toml
@@ -45,8 +45,9 @@ tokio-stream = "0.1"
 tonic = "0.4"
 uuid = { version = "0.8", features = ["v4"] }
 
-arrow = { path = "../../../arrow"  }
-arrow-flight = { path = "../../../arrow-flight"  }
+arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
+arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
+
 datafusion = { path = "../../../datafusion" }
 
 [dev-dependencies]
diff --git a/rust/ballista/rust/scheduler/Cargo.toml b/rust/ballista/rust/scheduler/Cargo.toml
index 71925ee..197a231 100644
--- a/rust/ballista/rust/scheduler/Cargo.toml
+++ b/rust/ballista/rust/scheduler/Cargo.toml
@@ -52,7 +52,7 @@ tonic = "0.4"
 tower = { version = "0.4" }
 warp = "0.3"
 
-arrow = { path = "../../../arrow"  }
+arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
 datafusion = { path = "../../../datafusion" }
 
 [dev-dependencies]