Skip to content

Commit

Permalink
chore: pin to clap-3.0.0-beta.2 (#126)
Browse files Browse the repository at this point in the history
beta.4 introduced errors like these:

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

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
  • Loading branch information
AsixDev-Eugene0082 authored Aug 17, 2021
1 parent 7eb760b commit f00a8d2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ic-cdk-optimizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-cdk-optimizer"
version = "0.3.0"
version = "0.3.1"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "WASM Optimizer for the IC CDK (experimental)."
Expand All @@ -16,7 +16,8 @@ include = ["src", "Cargo.toml", "LICENSE", "README.md"]

[dependencies]
binaryen = "0.12.0"
clap = "3.0.0-beta.1"
clap = "=3.0.0-beta.2"
clap_derive = "=3.0.0-beta.2"
humansize = "1.1.0"
tempfile = "3.1.0"
wabt = "0.10.0"

0 comments on commit f00a8d2

Please sign in to comment.