You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/11/08 21:45:41 UTC

[arrow-datafusion] branch master updated: Set versions to dependencies with path in benchmarks Cargo.toml file (#4136)

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 18c6a0b37 Set versions to dependencies with path in benchmarks Cargo.toml file (#4136)
18c6a0b37 is described below

commit 18c6a0b37c967705889721d14f65e536c8a2377a
Author: ArkashaJavelin <11...@users.noreply.github.com>
AuthorDate: Wed Nov 9 01:45:35 2022 +0400

    Set versions to dependencies with path in benchmarks Cargo.toml file (#4136)
---
 benchmarks/Cargo.toml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index aa2324b98..d432c454b 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -34,21 +34,21 @@ snmalloc = ["snmalloc-rs"]
 
 [dependencies]
 arrow = "26.0.0"
-datafusion = { path = "../datafusion/core" }
+datafusion = { path = "../datafusion/core", version = "14.0.0" }
 env_logger = "0.9"
 futures = "0.3"
 mimalloc = { version = "0.1", optional = true, default-features = false }
 num_cpus = "1.13.0"
 object_store = "0.5.0"
 parquet = "26.0.0"
-parquet-test-utils = { path = "../parquet-test-utils/" }
+parquet-test-utils = { path = "../parquet-test-utils/", version = "0.1.0" }
 rand = "0.8.4"
 serde = { version = "1.0.136", features = ["derive"] }
 serde_json = "1.0.78"
 snmalloc-rs = { version = "0.3", optional = true }
 structopt = { version = "0.3", default-features = false }
-test-utils = { path = "../test-utils/" }
+test-utils = { path = "../test-utils/", version = "0.1.0" }
 tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] }
 
 [dev-dependencies]
-datafusion-proto = { path = "../datafusion/proto" }
+datafusion-proto = { path = "../datafusion/proto", version = "14.0.0" }