You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/06/28 10:03:43 UTC

[arrow-rs] branch master updated: Unpin clap (#1867) (#1954)

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

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 30e65df41 Unpin clap (#1867) (#1954)
30e65df41 is described below

commit 30e65df4104a4b36fc153461af08722c90f5c07f
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Tue Jun 28 11:03:37 2022 +0100

    Unpin clap (#1867) (#1954)
---
 integration-testing/Cargo.toml | 2 +-
 parquet/Cargo.toml             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml
index 0845efed8..e1dc77145 100644
--- a/integration-testing/Cargo.toml
+++ b/integration-testing/Cargo.toml
@@ -34,7 +34,7 @@ logging = ["tracing-subscriber"]
 arrow = { path = "../arrow", default-features = false, features = [ "test_utils" ] }
 arrow-flight = { path = "../arrow-flight", default-features = false }
 async-trait = { version = "0.1.41", default-features = false }
-clap = { version = "~3.1", default-features = false, features = ["std", "derive"] }
+clap = { version = "3", default-features = false, features = ["std", "derive"] }
 futures = { version = "0.3", default-features = false }
 hex = { version = "0.4", default-features = false }
 prost = { version = "0.10", default-features = false }
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index a31644e5c..476c55a72 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -44,7 +44,7 @@ num = { version = "0.4", default-features = false }
 num-bigint = { version = "0.4", default-features = false }
 arrow = { path = "../arrow", version = "17.0.0", optional = true, default-features = false, features = ["ipc"] }
 base64 = { version = "0.13", default-features = false, features = ["std"], optional = true }
-clap = { version = "~3.1", default-features = false, features = ["std", "derive", "env"], optional = true }
+clap = { version = "3", default-features = false, features = ["std", "derive", "env"], optional = true }
 serde_json = { version = "1.0", default-features = false, optional = true }
 rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
 futures = { version = "0.3", default-features = false, features = ["std" ], optional = true }