Bump tokio from 1.24.2 to 1.25.0 (#808)

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.24.2 to 1.25.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/commits/tokio-1.25.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2023-01-30 10:21:06 +00:00
committed by GitHub
parent 4c8ffc3073
commit d820ab81f5
7 changed files with 8 additions and 8 deletions
Generated
+2 -2
View File
@@ -3585,9 +3585,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.24.2" version = "1.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"bytes", "bytes",
+1 -1
View File
@@ -39,4 +39,4 @@ syn = "1.0.80"
# communicate with the substrate nodes # communicate with the substrate nodes
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] } jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] }
# async runtime # async runtime
tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "time"] } tokio = { version = "1.25", features = ["rt-multi-thread", "macros", "time"] }
+1 -1
View File
@@ -24,7 +24,7 @@ scale-info = "2.0.0"
subxt-metadata = { version = "0.26.0", path = "../metadata" } subxt-metadata = { version = "0.26.0", path = "../metadata" }
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] } jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] }
hex = "0.4.3" hex = "0.4.3"
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] }
[dev-dependencies] [dev-dependencies]
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
+1 -1
View File
@@ -13,7 +13,7 @@ description = "Subxt example usage"
[dev-dependencies] [dev-dependencies]
subxt = { path = "../subxt" } subxt = { path = "../subxt" }
tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "time"] } tokio = { version = "1.25", features = ["rt-multi-thread", "macros", "time"] }
sp-keyring = "12.0.0" sp-keyring = "12.0.0"
futures = "0.3.13" futures = "0.3.13"
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] }
+1 -1
View File
@@ -73,7 +73,7 @@ getrandom = { version = "0.2", features = ["js"] }
bitvec = "1" bitvec = "1"
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] }
scale-info = { version = "2.0.0", features = ["bit-vec"] } scale-info = { version = "2.0.0", features = ["bit-vec"] }
tokio = { version = "1.8", features = ["macros", "time", "rt-multi-thread"] } tokio = { version = "1.25", features = ["macros", "time", "rt-multi-thread"] }
sp-core = { version = "11.0.0", default-features = false } sp-core = { version = "11.0.0", default-features = false }
sp-runtime = { version = "12.0.0" } sp-runtime = { version = "12.0.0" }
sp-keyring = "12.0.0" sp-keyring = "12.0.0"
+1 -1
View File
@@ -30,7 +30,7 @@ syn = "1.0.0"
subxt = { version = "0.26.0", path = "../../subxt" } subxt = { version = "0.26.0", path = "../../subxt" }
subxt-codegen = { version = "0.26.0", path = "../../codegen" } subxt-codegen = { version = "0.26.0", path = "../../codegen" }
test-runtime = { path = "../test-runtime" } test-runtime = { path = "../test-runtime" }
tokio = { version = "1.8", features = ["macros", "time"] } tokio = { version = "1.25", features = ["macros", "time"] }
tracing = "0.1.34" tracing = "0.1.34"
tracing-subscriber = "0.3.11" tracing-subscriber = "0.3.11"
wabt = "0.10.0" wabt = "0.10.0"
+1 -1
View File
@@ -11,6 +11,6 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
[build-dependencies] [build-dependencies]
subxt = { path = "../../subxt" } subxt = { path = "../../subxt" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] }
which = "4.4.0" which = "4.4.0"
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport"] } jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport"] }