Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
update futures dependency (#5426)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikVolf committed Mar 27, 2020
1 parent 7c63267 commit 3f3fb5b
Show file tree
Hide file tree
Showing 23 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion bin/node-template/node/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate/"
name = "node-template"

[dependencies]
futures = "0.3.1"
futures = "0.3.4"
log = "0.4.8"
structopt = "0.3.8"

Expand Down
2 changes: 1 addition & 1 deletion bin/node/cli/Cargo.toml
Expand Up @@ -106,7 +106,7 @@ sc-keystore = { version = "2.0.0-alpha.5", path = "../../../client/keystore" }
sc-consensus-babe = { version = "0.8.0-alpha.5", features = ["test-helpers"], path = "../../../client/consensus/babe" }
sc-consensus-epochs = { version = "0.8.0-alpha.5", path = "../../../client/consensus/epochs" }
sc-service-test = { version = "2.0.0-dev", path = "../../../client/service/test" }
futures = "0.3.1"
futures = "0.3.4"
tempfile = "3.1.0"
assert_cmd = "0.12"
nix = "0.17"
Expand Down
2 changes: 1 addition & 1 deletion client/authority-discovery/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ prost-build = "0.6.1"
bytes = "0.5.0"
codec = { package = "parity-scale-codec", default-features = false, version = "1.2.0" }
derive_more = "0.99.2"
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
libp2p = { version = "0.16.2", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
log = "0.4.8"
Expand Down
2 changes: 1 addition & 1 deletion client/basic-authorship/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ description = "Basic implementation of block-authoring logic."

[dependencies]
log = "0.4.8"
futures = "0.3.1"
futures = "0.3.4"
codec = { package = "parity-scale-codec", version = "1.2.0" }
sp-api = { version = "2.0.0-alpha.5", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../primitives/runtime" }
Expand Down
2 changes: 1 addition & 1 deletion client/cli/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ ansi_term = "0.12.1"
lazy_static = "1.4.0"
app_dirs = "1.2.1"
tokio = { version = "0.2.9", features = [ "signal", "rt-core", "rt-threaded" ] }
futures = "0.3.1"
futures = "0.3.4"
fdlimit = "0.1.4"
serde_json = "1.0.41"
sc-informant = { version = "0.8.0-alpha.5", path = "../informant" }
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/aura/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ sc-client-api = { version = "2.0.0-alpha.5", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.2.0" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
derive_more = "0.99.2"
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-alpha.5", path = "../../keystore" }
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/babe/Cargo.toml
Expand Up @@ -36,7 +36,7 @@ sc-consensus-uncles = { version = "0.8.0-alpha.5", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-alpha.5", path = "../slots" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0-alpha.5", path = "../../../utils/fork-tree" }
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
parking_lot = "0.10.0"
log = "0.4.8"
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/babe/rpc/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ serde = { version = "1.0.104", features=["derive"] }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-alpha.5", path = "../../epochs" }
futures = "0.3.1"
futures = "0.3.4"
derive_more = "0.99.2"
sp-api = { version = "2.0.0-alpha.5", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../../primitives/consensus/common" }
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/manual-seal/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/paritytech/substrate/"

[dependencies]
derive_more = "0.99.2"
futures = "0.3.1"
futures = "0.3.4"
jsonrpc-core = "14.0.5"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.5"
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/slots/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ sp-api = { version = "2.0.0-alpha.5", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-alpha.5", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
parking_lot = "0.10.0"
log = "0.4.8"
Expand Down
2 changes: 1 addition & 1 deletion client/finality-grandpa/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ documentation = "https://docs.rs/sc-finality-grandpa"

[dependencies]
fork-tree = { version = "2.0.0-alpha.5", path = "../../utils/fork-tree" }
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
log = "0.4.8"
parking_lot = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion client/informant/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/paritytech/substrate/"

[dependencies]
ansi_term = "0.12.1"
futures = "0.3.1"
futures = "0.3.4"
log = "0.4.8"
parity-util-mem = { version = "0.6.0", default-features = false, features = ["primitive-types"] }
wasm-timer = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion client/network-gossip/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ documentation = "https://docs.rs/sc-network-gossip"


[dependencies]
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
libp2p = { version = "0.16.2", default-features = false, features = ["libp2p-websocket"] }
log = "0.4.8"
Expand Down
2 changes: 1 addition & 1 deletion client/network/Cargo.toml
Expand Up @@ -22,7 +22,7 @@ either = "1.5.3"
erased-serde = "0.3.9"
fnv = "1.0.6"
fork-tree = { version = "2.0.0-alpha.5", path = "../../utils/fork-tree" }
futures = "0.3.1"
futures = "0.3.4"
futures_codec = "0.3.3"
futures-timer = "3.0.1"
wasm-timer = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion client/network/test/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ repository = "https://github.com/paritytech/substrate/"
sc-network = { version = "0.8.0-alpha.5", path = "../" }
log = "0.4.8"
parking_lot = "0.10.0"
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
rand = "0.7.2"
libp2p = { version = "0.16.2", default-features = false, features = ["libp2p-websocket"] }
Expand Down
2 changes: 1 addition & 1 deletion client/offchain/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ bytes = "0.5"
sc-client-api = { version = "2.0.0-alpha.5", path = "../api" }
sp-api = { version = "2.0.0-alpha.5", path = "../../primitives/api" }
fnv = "1.0.6"
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
log = "0.4.8"
threadpool = "1.7"
Expand Down
2 changes: 1 addition & 1 deletion client/peerset/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ documentation = "https://docs.rs/sc-peerset"


[dependencies]
futures = "0.3.1"
futures = "0.3.4"
libp2p = { version = "0.16.2", default-features = false }
log = "0.4.8"
serde_json = "1.0.41"
Expand Down
2 changes: 1 addition & 1 deletion client/service/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ wasmtime = [
[dependencies]
derive_more = "0.99.2"
futures01 = { package = "futures", version = "0.1.29" }
futures = "0.3.1"
futures = "0.3.4"
futures-diagnose = "1.0"
parking_lot = "0.10.0"
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion client/telemetry/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ documentation = "https://docs.rs/sc-telemetry"
[dependencies]
bytes = "0.5"
parking_lot = "0.10.0"
futures = "0.3.1"
futures = "0.3.4"
futures-timer = "3.0.1"
wasm-timer = "0.2.0"
libp2p = { version = "0.16.2", default-features = false, features = ["libp2p-websocket"] }
Expand Down
2 changes: 1 addition & 1 deletion client/transaction-pool/graph/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ description = "Generic Transaction Pool"

[dependencies]
derive_more = "0.99.2"
futures = "0.3.1"
futures = "0.3.4"
log = "0.4.8"
parking_lot = "0.10.0"
serde = { version = "1.0.101", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion test-utils/client/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ sc-client = { version = "0.8.0-alpha.5", path = "../../client/" }
sc-client-db = { version = "0.8.0-alpha.5", features = ["test-helpers"], path = "../../client/db" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../primitives/consensus/common" }
sc-executor = { version = "0.8.0-alpha.5", path = "../../client/executor" }
futures = "0.3.1"
futures = "0.3.4"
hash-db = "0.15.2"
sp-keyring = { version = "2.0.0-alpha.5", path = "../../primitives/keyring" }
codec = { package = "parity-scale-codec", version = "1.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion test-utils/runtime/client/Cargo.toml
Expand Up @@ -19,4 +19,4 @@ sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockch
codec = { package = "parity-scale-codec", version = "1.2.0" }
sc-client-api = { version = "2.0.0-alpha.5", path = "../../../client/api" }
sc-client = { version = "0.8.0-alpha.5", path = "../../../client/" }
futures = "0.3.1"
futures = "0.3.4"
2 changes: 1 addition & 1 deletion utils/frame/rpc/system/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ description = "FRAME's system exposed over Substrate RPC"
[dependencies]
sc-client = { version = "0.8.0-alpha.5", path = "../../../../client/" }
codec = { package = "parity-scale-codec", version = "1.2.0" }
futures = "0.3.1"
futures = "0.3.4"
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3"
jsonrpc-derive = "14.0.3"
Expand Down

0 comments on commit 3f3fb5b

Please sign in to comment.