mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 11:31:05 +00:00
update most of the dependencies (#1946)
* update tiny-keccak to 0.2 * update deps except bitvec and shared_memory * fix some warning after futures upgrade * remove useless package rename caused by bug in cargo-upgrade * revert parity-util-mem * * remove unused import * cargo update * remove all renames on parity-scale-codec * remove the leftovers * remove unused dep
This commit is contained in:
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.5"
|
||||
futures = "0.3.8"
|
||||
log = "0.4.11"
|
||||
futures-timer = "3.0.2"
|
||||
streamunordered = "0.5.1"
|
||||
@@ -14,12 +14,12 @@ client = { package = "sc-client-api", git = "https://github.com/paritytech/subst
|
||||
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../subsystem-util" }
|
||||
polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../primitives" }
|
||||
async-trait = "0.1"
|
||||
async-trait = "0.1.41"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
polkadot-node-network-protocol = { path = "../network/protocol" }
|
||||
futures = { version = "0.3.5", features = ["thread-pool"] }
|
||||
futures = { version = "0.3.8", features = ["thread-pool"] }
|
||||
futures-timer = "3.0.2"
|
||||
femme = "2.1.1"
|
||||
log = "0.4.11"
|
||||
|
||||
@@ -1275,7 +1275,7 @@ where
|
||||
|
||||
loop {
|
||||
select! {
|
||||
x = self.running_subsystems.next() => {
|
||||
_ = self.running_subsystems.next() => {
|
||||
if self.running_subsystems.is_empty() {
|
||||
break;
|
||||
}
|
||||
@@ -1765,7 +1765,7 @@ mod tests {
|
||||
|
||||
loop {
|
||||
select! {
|
||||
a = overseer_fut => break,
|
||||
_ = overseer_fut => break,
|
||||
s1_next = s1_rx.next() => {
|
||||
match s1_next {
|
||||
Some(msg) => {
|
||||
@@ -1779,7 +1779,7 @@ mod tests {
|
||||
},
|
||||
s2_next = s2_rx.next() => {
|
||||
match s2_next {
|
||||
Some(msg) => s2_results.push(s2_next),
|
||||
Some(_) => s2_results.push(s2_next),
|
||||
None => break,
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user