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

commit bb110c3ff80f68838ec87ee7f7c1c6acd59dec04
Author: Andy Grove <[email protected]>
AuthorDate: Sun Apr 18 10:21:34 2021 -0600

    Update DataFusion dependencies on arrow-rs
---
 rust/benchmarks/Cargo.toml          | 4 ++--
 rust/datafusion-examples/Cargo.toml | 4 ++--
 rust/datafusion/Cargo.toml          | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/rust/benchmarks/Cargo.toml b/rust/benchmarks/Cargo.toml
index 5cdf0f9..7fd8444 100644
--- a/rust/benchmarks/Cargo.toml
+++ b/rust/benchmarks/Cargo.toml
@@ -31,8 +31,8 @@ simd = ["datafusion/simd"]
 snmalloc = ["snmalloc-rs"]
 
 [dependencies]
-arrow = { path = "../arrow" }
-parquet = { path = "../parquet" }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = "e023b4c" }
+parquet = { git = "https://github.com/apache/arrow-rs";, rev = "e023b4c" }
 datafusion = { path = "../datafusion" }
 structopt = { version = "0.3", default-features = false }
 tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread"] }
diff --git a/rust/datafusion-examples/Cargo.toml 
b/rust/datafusion-examples/Cargo.toml
index c86e7cc..1a06050 100644
--- a/rust/datafusion-examples/Cargo.toml
+++ b/rust/datafusion-examples/Cargo.toml
@@ -29,10 +29,10 @@ publish = false
 
 
 [dev-dependencies]
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = "e023b4c" }
+arrow-flight = { git = "https://github.com/apache/arrow-rs";, rev = "e023b4c" }
 datafusion = { path = "../datafusion" }
-arrow = { path = "../arrow" }
 prost = "0.7"
-arrow-flight = { path = "../arrow-flight" }
 tonic = "0.4"
 tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", 
"sync"] }
 futures = "0.3"
diff --git a/rust/datafusion/Cargo.toml b/rust/datafusion/Cargo.toml
index fd1c1b2..88a50dd 100644
--- a/rust/datafusion/Cargo.toml
+++ b/rust/datafusion/Cargo.toml
@@ -50,8 +50,8 @@ unicode_expressions = ["unicode-segmentation"]
 [dependencies]
 ahash = "0.7"
 hashbrown = "0.11"
-arrow = { path = "../arrow", version = "4.0.0-SNAPSHOT", features = 
["prettyprint"] }
-parquet = { path = "../parquet", version = "4.0.0-SNAPSHOT", features = 
["arrow"] }
+arrow = { git = "https://github.com/apache/arrow-rs";, rev = "e023b4c", 
features = ["prettyprint"] }
+parquet = { git = "https://github.com/apache/arrow-rs";, rev = "e023b4c", 
features = ["arrow"] }
 sqlparser = "0.9.0"
 clap = "2.33"
 rustyline = {version = "7.0", optional = true}

Reply via email to