diff --git a/substrate/Cargo.lock b/substrate/Cargo.lock index a05d7b9bb1..e8a21ea6dd 100644 --- a/substrate/Cargo.lock +++ b/substrate/Cargo.lock @@ -717,15 +717,6 @@ dependencies = [ "vec_map", ] -[[package]] -name = "clear_on_drop" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" -dependencies = [ - "cc", -] - [[package]] name = "cloudabi" version = "0.0.3" @@ -8430,7 +8421,6 @@ name = "substrate-browser-utils" version = "0.8.0-rc5" dependencies = [ "chrono", - "clear_on_drop", "console_error_panic_hook", "console_log", "futures 0.1.29", diff --git a/substrate/utils/browser/Cargo.toml b/substrate/utils/browser/Cargo.toml index 4e07cc18a1..20e04148fa 100644 --- a/substrate/utils/browser/Cargo.toml +++ b/substrate/utils/browser/Cargo.toml @@ -28,8 +28,6 @@ sc-service = { version = "0.8.0-rc5", path = "../../client/service", default-fea sc-network = { path = "../../client/network", version = "0.8.0-rc5"} sc-chain-spec = { path = "../../client/chain-spec", version = "2.0.0-rc5"} -# Imported just for the `no_cc` feature -clear_on_drop = { version = "0.2.3", features = ["no_cc"] } # Imported just for the `wasm-bindgen` feature rand6 = { package = "rand", version = "0.6", features = ["wasm-bindgen"] } rand = { version = "0.7", features = ["wasm-bindgen"] }