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 f191fa6da Pin clap to 3.1 (#1867) (#1868)
f191fa6da is described below
commit f191fa6da3819ed4dac6897d36aa4655cda74ebc
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Mon Jun 13 20:02:20 2022 +0100
Pin clap to 3.1 (#1867) (#1868)
---
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 253c9a25e..57b521112 100644
--- a/integration-testing/Cargo.toml
+++ b/integration-testing/Cargo.toml
@@ -34,7 +34,7 @@ logging = ["tracing-subscriber"]
arrow = { path = "../arrow" }
arrow-flight = { path = "../arrow-flight" }
async-trait = "0.1.41"
-clap = { version = "3", features = ["derive", "env"] }
+clap = { version = "~3.1", features = ["derive", "env"] }
futures = "0.3"
hex = "0.4"
prost = "0.10"
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index 66e2797b2..9a9793435 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -44,7 +44,7 @@ num = "0.4"
num-bigint = "0.4"
arrow = { path = "../arrow", version = "16.0.0", optional = true,
default-features = false, features = ["ipc"] }
base64 = { version = "0.13", optional = true }
-clap = { version = "3", optional = true, features = ["derive", "env"] }
+clap = { version = "~3.1", optional = true, features = ["derive", "env"] }
serde_json = { version = "1.0", optional = true }
rand = "0.8"
futures = { version = "0.3", optional = true }