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-ballista.git


The following commit(s) were added to refs/heads/master by this push:
     new 0da068ff use datafusion 12.0.0 (#223)
0da068ff is described below

commit 0da068ff1d82fb0f3eb469a178b7f74302828c04
Author: Andy Grove <[email protected]>
AuthorDate: Fri Sep 16 07:24:28 2022 -0600

    use datafusion 12.0.0 (#223)
---
 ballista-cli/Cargo.toml            | 4 ++--
 ballista/rust/client/Cargo.toml    | 4 ++--
 ballista/rust/core/Cargo.toml      | 4 ++--
 ballista/rust/executor/Cargo.toml  | 4 ++--
 ballista/rust/scheduler/Cargo.toml | 4 ++--
 benchmarks/Cargo.toml              | 4 ++--
 examples/Cargo.toml                | 2 +-
 python/Cargo.toml                  | 2 +-
 8 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/ballista-cli/Cargo.toml b/ballista-cli/Cargo.toml
index 1b871db1..b0fb0076 100644
--- a/ballista-cli/Cargo.toml
+++ b/ballista-cli/Cargo.toml
@@ -31,8 +31,8 @@ readme = "README.md"
 [dependencies]
 ballista = { path = "../ballista/rust/client", version = "0.7.0" }
 clap = { version = "3", features = ["derive", "cargo"] }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
-datafusion-cli = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
+datafusion = "12.0.0"
+datafusion-cli = "12.0.0"
 dirs = "4.0.0"
 env_logger = "0.9"
 mimalloc = { version = "0.1", default-features = false }
diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml
index 2bd34c7d..af9012c1 100644
--- a/ballista/rust/client/Cargo.toml
+++ b/ballista/rust/client/Cargo.toml
@@ -31,8 +31,8 @@ rust-version = "1.59"
 ballista-core = { path = "../core", version = "0.7.0" }
 ballista-executor = { path = "../executor", version = "0.7.0", optional = true 
}
 ballista-scheduler = { path = "../scheduler", version = "0.7.0", optional = 
true }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
-datafusion-proto = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
+datafusion = "12.0.0"
+datafusion-proto = "12.0.0"
 futures = "0.3"
 log = "0.4"
 parking_lot = "0.12"
diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index d6c35cda..ebf7f075 100644
--- a/ballista/rust/core/Cargo.toml
+++ b/ballista/rust/core/Cargo.toml
@@ -39,8 +39,8 @@ arrow-flight = { version = "22.0.0" }
 async-trait = "0.1.41"
 chrono = { version = "0.4", default-features = false }
 clap = { version = "3", features = ["derive", "cargo"] }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
-datafusion-proto = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
+datafusion = "12.0.0"
+datafusion-proto = "12.0.0"
 futures = "0.3"
 hashbrown = "0.12"
 
diff --git a/ballista/rust/executor/Cargo.toml 
b/ballista/rust/executor/Cargo.toml
index 16702de3..d377304f 100644
--- a/ballista/rust/executor/Cargo.toml
+++ b/ballista/rust/executor/Cargo.toml
@@ -40,8 +40,8 @@ async-trait = "0.1.41"
 ballista-core = { path = "../core", version = "0.7.0" }
 chrono = { version = "0.4", default-features = false }
 configure_me = "0.4.0"
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
-datafusion-proto = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
+datafusion = "12.0.0"
+datafusion-proto = "12.0.0"
 futures = "0.3"
 hyper = "0.14.4"
 log = "0.4"
diff --git a/ballista/rust/scheduler/Cargo.toml 
b/ballista/rust/scheduler/Cargo.toml
index 24616ad8..1f940086 100644
--- a/ballista/rust/scheduler/Cargo.toml
+++ b/ballista/rust/scheduler/Cargo.toml
@@ -45,8 +45,8 @@ ballista-core = { path = "../core", version = "0.7.0" }
 base64 = { version = "0.13", default-features = false }
 clap = { version = "3", features = ["derive", "cargo"] }
 configure_me = "0.4.0"
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
-datafusion-proto = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
+datafusion = "12.0.0"
+datafusion-proto = "12.0.0"
 etcd-client = { version = "0.9", optional = true }
 flatbuffers = { version = "2.1.2" }
 futures = "0.3"
diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index cc0d41ae..42b7c29f 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -33,8 +33,8 @@ snmalloc = ["snmalloc-rs"]
 
 [dependencies]
 ballista = { path = "../ballista/rust/client" }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
-datafusion-proto = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
+datafusion = "12.0.0"
+datafusion-proto = "12.0.0"
 env_logger = "0.9"
 futures = "0.3"
 mimalloc = { version = "0.1", optional = true, default-features = false }
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index 14155ee6..06c5ce6c 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -35,7 +35,7 @@ required-features = ["ballista/standalone"]
 
 [dependencies]
 ballista = { path = "../ballista/rust/client", version = "0.7.0" }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1" }
+datafusion = "12.0.0"
 futures = "0.3"
 num_cpus = "1.13.0"
 prost = "0.11"
diff --git a/python/Cargo.toml b/python/Cargo.toml
index 81bd6d1e..98fa95fb 100644
--- a/python/Cargo.toml
+++ b/python/Cargo.toml
@@ -36,7 +36,7 @@ default = ["mimalloc"]
 [dependencies]
 async-trait = "0.1"
 ballista = { path = "../ballista/rust/client" }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"12.0.0-rc1", features = ["pyarrow"] }
+datafusion = { version = "12.0.0", features = ["pyarrow"] }
 futures = "0.3"
 mimalloc = { version = "*", optional = true, default-features = false }
 pyo3 = { version = "~0.17.1", features = ["extension-module", "abi3", 
"abi3-py37"] }

Reply via email to