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

Commit

Permalink
Bump Tokio to 1.10 (#592)
Browse files Browse the repository at this point in the history
* Bump Tokio to 1.10

* Missed one
  • Loading branch information
gavofyork committed Aug 28, 2021
1 parent 276e5bd commit 968c91e
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 46 deletions.
60 changes: 19 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/consensus/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ cumulus-primitives-core = { path = "../../../primitives/core" }
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }

# Other deps
tokio = { version = "0.2.21", features = ["macros"] }
tokio = { version = "1.10", features = ["macros"] }
futures-timer = "3.0.2"
2 changes: 1 addition & 1 deletion client/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ parking_lot = "0.10.2"
derive_more = "0.99.2"

[dev-dependencies]
tokio = { version = "0.2.21", features = ["macros"] }
tokio = { version = "1.10", features = ["macros"] }

# Cumulus deps
cumulus-test-service = { path = "../../test/service" }
Expand Down
2 changes: 1 addition & 1 deletion client/pov-recovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tracing = "0.1.22"
rand = "0.8.3"

[dev-dependencies]
tokio = { version = "0.2.21", features = ["macros"] }
tokio = { version = "1.10", features = ["macros"] }

# Cumulus deps
cumulus-test-service = { path = "../../test/service" }
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ assert_cmd = "0.12"
nix = "0.17"
rand = "0.7.3"
tempfile = "3.2.0"
tokio = { version = "0.2.13", features = ["macros"] }
tokio = { version = "1.10", features = ["macros"] }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion test/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jsonrpc-core = "18.0.0"

[dev-dependencies]
futures = "0.3.5"
tokio = { version = "0.2.21", features = ["macros"] }
tokio = { version = "1.10", features = ["macros"] }

# Polkadot dependencies
polkadot-test-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
Expand Down

0 comments on commit 968c91e

Please sign in to comment.