From 154fbc4e574c91b048de7e3e38fd248410fd9fc6 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 19 Apr 2021 05:43:07 +0200 Subject: [PATCH 1/2] Remove `funty` pin --- templates/new/_Cargo.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/templates/new/_Cargo.toml b/templates/new/_Cargo.toml index 121f9f9f..9ac4826b 100644 --- a/templates/new/_Cargo.toml +++ b/templates/new/_Cargo.toml @@ -14,9 +14,6 @@ ink_lang = { version = "3.0.0-rc3", default-features = false } scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } scale-info = { version = "0.6.0", default-features = false, features = ["derive"], optional = true } -# Should be removed once bitvecto-rs/bitvec#105 is resolved -funty = "=1.1.0" - [lib] name = "{{name}}" path = "lib.rs" -- GitLab From 02844c04798eae7c57420abbb39bfeaec3d9b5e8 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 19 Apr 2021 06:52:36 +0200 Subject: [PATCH 2/2] Remove unused `binaryen` dependency --- Cargo.lock | 22 ---------------------- Cargo.toml | 1 - 2 files changed, 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21204c1e..2fcd996e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -307,27 +307,6 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" -[[package]] -name = "binaryen" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a9b407f52d0b918c6ea41d7a328321496b315f61da99a309b375dfbbd04bc9a" -dependencies = [ - "binaryen-sys", -] - -[[package]] -name = "binaryen-sys" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86e9636d01b92f2df45dce29c35a9e3724687c1055bb4472fb4b829cc4a5a561" -dependencies = [ - "cc", - "cmake", - "heck", - "regex", -] - [[package]] name = "bitflags" version = "1.2.1" @@ -500,7 +479,6 @@ dependencies = [ "anyhow", "assert_matches", "async-std", - "binaryen", "blake2", "cargo_metadata", "colored", diff --git a/Cargo.toml b/Cargo.toml index ddcfbff6..da3e7c22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,6 @@ serde = { version = "1.0.125", default-features = false, features = ["derive"] } serde_json = "1.0.64" tempfile = "3.2.0" url = { version = "2.2.1", features = ["serde"] } -binaryen = { version = "0.12.0", optional = true } impl-serde = "0.3.1" regex = "1.4" -- GitLab