Skip to content

Commit 38136cd

Browse files
chore: Pin clap to 3.0.0-beta.2
Avoids errors like this: error[E0658]: arbitrary expressions in key-value attributes are unstable --> /Users/ericswanson/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.4/src/lib.rs:8:10 | 8 | #![doc = include_str!("../README.md")] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: see issue #78835 <rust-lang/rust#78835> for more information Compiling binread v2.1.1 Compiling logos v0.12.0 error[E0658]: use of unstable library feature 'osstring_ascii' --> /Users/ericswanson/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.4/src/parse/matches/matched_arg.rs:130:19 | 130 | v.eq_ignore_ascii_case(val) | ^^^^^^^^^^^^^^^^^^^^ | = note: see issue #70516 <rust-lang/rust#70516> for more information
1 parent 9d9fd30 commit 38136cd

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

Cargo.lock

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

icx-asset/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]
1818
anyhow = "1.0.34"
1919
candid = "0.7.4"
2020
chrono = "0.4.19"
21-
clap = "3.0.0-beta.2"
21+
clap = "=3.0.0-beta.2"
22+
clap_derive = "=3.0.0-beta.2"
2223
delay = "0.3.1"
2324
garcon = "0.2.2"
2425
humantime = "2.0.1"

icx-cert/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]
1717
[dependencies]
1818
anyhow = "1.0"
1919
base64 = "0.13"
20-
clap = "3.0.0-beta.2"
20+
clap = "=3.0.0-beta.2"
21+
clap_derive = "=3.0.0-beta.2"
2122
chrono = "0.4.19"
2223
hex = "0.4.2"
2324
ic-agent = { path = "../ic-agent", version = "0.8" }

icx-proxy/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ path = "src/main.rs"
1818

1919
[dependencies]
2020
anyhow = "1.0.34"
21-
clap = "3.0.0-beta.2"
21+
clap = "=3.0.0-beta.2"
22+
clap_derive = "=3.0.0-beta.2"
2223
garcon = { version = "0.2.3", features = ["async"] }
2324
hex = "0.4.3"
2425
hyper = { version = "0.14.11", features = ["full"] }

icx/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ path = "src/main.rs"
1919
[dependencies]
2020
anyhow = { version = "1.0", features = ["backtrace"] }
2121
candid = "0.7.4"
22-
clap = "3.0.0-beta.1"
22+
clap = "=3.0.0-beta.2"
23+
clap_derive = "=3.0.0-beta.2"
2324
garcon = { version = "0.2.3", features = ["async"] }
2425
hex = "0.4.2"
2526
humantime = "2.0.1"

zzz-release/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ edition = "2018"
88
[dependencies]
99
anyhow = "1.0.40"
1010
cargo_metadata = "0.14.0"
11-
clap = "3.0.0-beta.2"
11+
clap = "=3.0.0-beta.2"
12+
clap_derive = "=3.0.0-beta.2"
1213
git2 = "0.13.20"
1314
toml-parse = "0.2.11"

0 commit comments

Comments
 (0)