Skip to content

Commit c6ce891

Browse files
committed
update on tokio version, based on:
tokio-rs/console#345 (comment)
1 parent 7d6913b commit c6ce891

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

clients/runner/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
clap = { version = "4.0.17", features = ["derive"]}
99
hex = "0.4.3"
10-
tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "time"] }
10+
tokio = { version = "1.37", features = ["rt-multi-thread", "macros", "time"] }
1111
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] }
1212
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
1313
thiserror = "1.0.0"

clients/runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ log = "0.4.0"
3131
serde = { version = "1.0.136", features = ["derive"] }
3232
serde_json = "1.0.71"
3333
thiserror = "1.0"
34-
tokio = { version = "1.0", features = ["full"] }
34+
tokio = { version = "1.37", features = ["full"] }
3535
prometheus = { version = "0.12.0", features = ["process"] }
3636
url = "2"
3737

clients/runtime/client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Embed a substrate node into your subxt application."
1212
keywords = ["parity", "substrate", "blockchain"]
1313

1414
[dependencies]
15-
tokio = { version = "1.10", features = ["time", "rt-multi-thread"] }
15+
tokio = { version = "1.37", features = ["time", "rt-multi-thread"] }
1616
futures = { version = "0.3.9", features = ["compat"], package = "futures" }
1717
futures01 = { package = "futures", version = "0.1.29" }
1818
jsonrpsee = "0.16.0"

clients/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ thiserror = "1.0"
1212

1313
hyper = { version = "0.14.11" }
1414
hyper-tls = "0.5.0"
15-
tokio = { version = "1.0", features = ["full"] }
15+
tokio = { version = "1.37", features = ["full"] }
1616
warp = "0.3.2"
1717

1818
serde = { version = "1.0.136", features = ["derive"] }

clients/stellar-relay-lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ substrate-stellar-sdk = {git = "https://github.com/pendulum-chain/substrate-stel
3434

3535
err-derive = "0.3.1"
3636

37-
tokio = { version = "1.0", features = [
37+
tokio = { version = "1.37", features = [
3838
"macros", # allows main function to be async
3939
"rt-multi-thread", # for multi-thread runtime
4040
"sync", # to make channels available

clients/vault/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sysinfo = "0.26.1"
4545
thiserror = "1.0"
4646

4747
# tokio related
48-
tokio = { version = "1.0", features = ["full", "tracing"] }
48+
tokio = { version = "1.37", features = ["full", "tracing"] }
4949
tokio-metrics = { version = "0.1.0", default-features = false }
5050
tokio-stream = { version = "0.1.9", features = ["sync"] }
5151
console-subscriber = "0.2.0"

clients/wallet/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ reqwest = { version = "0.11", features = ["json"] }
1818
serde = "1.0.136"
1919
serde_json = { version = '1.0.45', default-features = false, features = ['alloc'] }
2020
thiserror = "1.0"
21-
tokio = { version = "1.0", features = ["full", "tracing"] }
21+
tokio = { version = "1.37", features = ["full", "tracing"] }
2222
tokio-metrics = { version = "0.1.0", default-features = false }
2323
tokio-stream = { version = "0.1.9", features = ["sync"] }
2424
tracing = { version = "0.1", features = ["log"] }

0 commit comments

Comments
 (0)