upgrade a few dependencies (#7831)

* upgrade a few dependencies

* make it compile at the expense of duplicate deps

* fix web-wasm and a warning

* introduce activate-wasm-bindgen-features crate

* Revert "introduce activate-wasm-bindgen-features crate"

This reverts commit 5a6e41e683f8a4844c0a735dcd08caabb2313f11.

* add getrandom feature to sc-consensus-aura
This commit is contained in:
Andronik Ordian
2021-01-06 17:12:17 +01:00
committed by GitHub
parent a208da1d18
commit 2b48e09b24
58 changed files with 255 additions and 203 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ pallet-timestamp = { version = "2.0.0", default-features = false, path = "../tim
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
sp-io ={ version = "2.0.0", path = "../../primitives/io" }
lazy_static = "1.4.0"
parking_lot = "0.10.0"
parking_lot = "0.11.1"
[features]
default = ["std"]
+1 -1
View File
@@ -20,7 +20,7 @@ sp-std = { version = "2.0.0", default-features = false, path = "../../primitives
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
impl-trait-for-tuples = "0.1.3"
impl-trait-for-tuples = "0.2.0"
[dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" }
+1 -1
View File
@@ -25,7 +25,7 @@ frame-support = { version = "2.0.0", default-features = false, path = "../suppor
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../timestamp" }
sp-trie = { version = "2.0.0", optional = true, default-features = false, path = "../../primitives/trie" }
impl-trait-for-tuples = "0.1.3"
impl-trait-for-tuples = "0.1"
[dev-dependencies]
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
+1 -1
View File
@@ -41,7 +41,7 @@ pallet-staking-reward-curve = { version = "2.0.0", path = "../staking/reward-cu
substrate-test-utils = { version = "2.0.0", path = "../../test-utils" }
frame-benchmarking = { version = "2.0.0", path = "../benchmarking" }
rand_chacha = { version = "0.2" }
parking_lot = "0.10.2"
parking_lot = "0.11.1"
hex = "0.4"
[features]
+2 -2
View File
@@ -29,13 +29,13 @@ paste = "0.1.6"
once_cell = { version = "1", default-features = false, optional = true }
sp-state-machine = { version = "0.8.0", optional = true, path = "../../primitives/state-machine" }
bitflags = "1.2"
impl-trait-for-tuples = "0.1.3"
impl-trait-for-tuples = "0.2.0"
smallvec = "1.4.1"
[dev-dependencies]
pretty_assertions = "0.6.1"
frame-system = { version = "2.0.0", path = "../system" }
parity-util-mem = { version = "0.7.0", default-features = false, features = ["primitive-types"] }
parity-util-mem = { version = "0.8.0", default-features = false, features = ["primitive-types"] }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
sp-api = { version = "2.0.0", default-features = false, path = "../../primitives/api" }
+1 -1
View File
@@ -21,7 +21,7 @@ sp-io = { version = "2.0.0", path = "../../primitives/io", default-features = fa
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
sp-version = { version = "2.0.0", default-features = false, path = "../../primitives/version" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
impl-trait-for-tuples = "0.1.3"
impl-trait-for-tuples = "0.2.0"
[dev-dependencies]
criterion = "0.3.3"
+1 -1
View File
@@ -17,7 +17,7 @@
use criterion::{Criterion, criterion_group, criterion_main, black_box};
use frame_system as system;
use frame_support::{decl_module, decl_event, impl_outer_origin, impl_outer_event, weights::Weight};
use frame_support::{decl_module, decl_event, impl_outer_origin, impl_outer_event};
use sp_core::H256;
use sp_runtime::{Perbill, traits::{BlakeTwo256, IdentityLookup}, testing::Header};
+1 -1
View File
@@ -25,7 +25,7 @@ frame-benchmarking = { version = "2.0.0", default-features = false, path = "../b
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../primitives/timestamp" }
impl-trait-for-tuples = "0.1.3"
impl-trait-for-tuples = "0.2.0"
[dev-dependencies]
sp-io ={ version = "2.0.0", path = "../../primitives/io" }
+1 -1
View File
@@ -20,7 +20,7 @@ sp-runtime = { version = "2.0.0", default-features = false, path = "../../primit
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0", default-features = false, path = "../balances" }
impl-trait-for-tuples = "0.1.3"
impl-trait-for-tuples = "0.2.0"
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }