diff --git a/Cargo.lock b/Cargo.lock index 21204c1ef1f4088211d57509cc9ed1f05875fd89..2fcd996e676469da9d2c7e9dd96fa6758fe11bb2 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 ddcfbff60f9f1ac81668fb05401704614f1dc50f..da3e7c228fe360495fd1e1137a8bf1aa3fe75ac9 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" diff --git a/templates/new/_Cargo.toml b/templates/new/_Cargo.toml index 121f9f9f31b409dc935254998fde4612ce039678..9ac4826bf8eadf2b44a6215cd145ab50a36086e4 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"