Bump tokio to 1.17.0 (#1014)

This commit is contained in:
Koute
2022-02-22 20:01:17 +09:00
committed by GitHub
parent 1864a61706
commit 5f74b4cf67
4 changed files with 18 additions and 17 deletions
+15 -14
View File
@@ -230,7 +230,7 @@ dependencies = [
"parking", "parking",
"polling", "polling",
"slab", "slab",
"socket2 0.4.2", "socket2 0.4.4",
"waker-fn", "waker-fn",
"winapi 0.3.9", "winapi 0.3.9",
] ]
@@ -3334,7 +3334,7 @@ dependencies = [
"httpdate", "httpdate",
"itoa 0.4.8", "itoa 0.4.8",
"pin-project-lite 0.2.7", "pin-project-lite 0.2.7",
"socket2 0.4.2", "socket2 0.4.4",
"tokio", "tokio",
"tower-service", "tower-service",
"tracing", "tracing",
@@ -4030,9 +4030,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.112" version = "0.2.119"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125" checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4"
[[package]] [[package]]
name = "libloading" name = "libloading"
@@ -4264,7 +4264,7 @@ dependencies = [
"log", "log",
"rand 0.8.5", "rand 0.8.5",
"smallvec", "smallvec",
"socket2 0.4.2", "socket2 0.4.4",
"void", "void",
] ]
@@ -4472,7 +4472,7 @@ dependencies = [
"libc", "libc",
"libp2p-core", "libp2p-core",
"log", "log",
"socket2 0.4.2", "socket2 0.4.4",
] ]
[[package]] [[package]]
@@ -4885,9 +4885,9 @@ dependencies = [
[[package]] [[package]]
name = "mio" name = "mio"
version = "0.7.14" version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" checksum = "ba272f85fa0b41fc91872be579b3bbe0f56b792aa361a380eb669469f68dafb2"
dependencies = [ dependencies = [
"libc", "libc",
"log", "log",
@@ -10529,9 +10529,9 @@ dependencies = [
[[package]] [[package]]
name = "socket2" name = "socket2"
version = "0.4.2" version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516" checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
dependencies = [ dependencies = [
"libc", "libc",
"winapi 0.3.9", "winapi 0.3.9",
@@ -11817,19 +11817,20 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.16.1" version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c27a64b625de6d309e8c57716ba93021dccf1b3b5c97edd6d3dd2d2135afc0a" checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
dependencies = [ dependencies = [
"bytes 1.1.0", "bytes 1.1.0",
"libc", "libc",
"memchr", "memchr",
"mio 0.7.14", "mio 0.8.0",
"num_cpus", "num_cpus",
"once_cell", "once_cell",
"parking_lot 0.11.2", "parking_lot 0.12.0",
"pin-project-lite 0.2.7", "pin-project-lite 0.2.7",
"signal-hook-registry", "signal-hook-registry",
"socket2 0.4.4",
"tokio-macros", "tokio-macros",
"winapi 0.3.9", "winapi 0.3.9",
] ]
+1 -1
View File
@@ -32,7 +32,7 @@ derive_more = "0.99.2"
async-trait = "0.1.52" async-trait = "0.1.52"
[dev-dependencies] [dev-dependencies]
tokio = { version = "1.10", features = ["macros"] } tokio = { version = "1.17.0", features = ["macros"] }
# Cumulus deps # Cumulus deps
cumulus-test-service = { path = "../../test/service" } cumulus-test-service = { path = "../../test/service" }
+1 -1
View File
@@ -32,7 +32,7 @@ tracing = "0.1.22"
rand = "0.8.5" rand = "0.8.5"
[dev-dependencies] [dev-dependencies]
tokio = { version = "1.10", features = ["macros"] } tokio = { version = "1.17.0", features = ["macros"] }
# Cumulus deps # Cumulus deps
cumulus-test-service = { path = "../../test/service" } cumulus-test-service = { path = "../../test/service" }
+1 -1
View File
@@ -9,7 +9,7 @@ codec = { package = "parity-scale-codec", version = "2.3.0" }
rand = "0.8.5" rand = "0.8.5"
serde = { version = "1.0.132", features = ["derive"] } serde = { version = "1.0.132", features = ["derive"] }
async-trait = "0.1.42" async-trait = "0.1.42"
tokio = { version = "1.10", features = ["macros"] } tokio = { version = "1.17.0", features = ["macros"] }
# Substrate # Substrate
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }