From 1f3a1f0b7f898708675fa188a8e3b09cfae450a1 Mon Sep 17 00:00:00 2001 From: ArkashaJavelin Date: Tue, 8 Nov 2022 10:36:18 +0400 Subject: [PATCH] Set versions to dependencies with path in benchmarks Cargo.toml file --- benchmarks/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index aa2324b980af..d432c454b2c6 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" }