Skip to content

Commit b3dd5f5

Browse files
committed
Upgrade tokioversion to 1.37.0
1 parent 9b71815 commit b3dd5f5

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

examples/client-cardano-transaction/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ mithril-client = { path = "../../mithril-client", features = ["unstable"] }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"
1818
slog-term = "2.9.0"
19-
tokio = { version = "1.35.1", features = ["full"] }
19+
tokio = { version = "1.37.0", features = ["full"] }

examples/client-mithril-stake-distribution/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ mithril-client = { path = "../../mithril-client" }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"
1818
slog-term = "2.9.0"
19-
tokio = { version = "1.35.1", features = ["full"] }
19+
tokio = { version = "1.37.0", features = ["full"] }

examples/client-snapshot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ clap = { version = "4.4.18", features = ["derive", "env"] }
1616
futures = "0.3.30"
1717
indicatif = "0.17.7"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
19-
tokio = { version = "1.35.1", features = ["full"] }
19+
tokio = { version = "1.37.0", features = ["full"] }

internal/mithril-persistence/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ sha2 = "0.10.8"
2424
slog = "2.7.0"
2525
sqlite = { version = "0.34.0", features = ["bundled"] }
2626
thiserror = "1.0.56"
27-
tokio = { version = "1.35.1", features = ["sync"] }
27+
tokio = { version = "1.37.0", features = ["sync"] }
2828

2929
[dev-dependencies]
3030
mithril-common = { path = "../../mithril-common", features = ["test_tools"] }
3131
mockall = "0.12.1"
3232
slog-async = "2.8.0"
3333
slog-scope = "4.4.0"
3434
slog-term = "2.9.0"
35-
tokio = { version = "1.35.1", features = ["macros", "time"] }
35+
tokio = { version = "1.37.0", features = ["macros", "time"] }

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ slog-scope = "4.4.0"
3939
sqlite = { version = "0.34.0", features = ["bundled"] }
4040
tar = "0.4.40"
4141
thiserror = "1.0.56"
42-
tokio = { version = "1.35.1", features = ["full"] }
42+
tokio = { version = "1.37.0", features = ["full"] }
4343
tokio-util = { version = "0.7.10", features = ["codec"] }
4444
typetag = "0.2.15"
4545
uuid = { version = "1.7.0", features = ["v4", "fast-rng", "macro-diagnostics"] }

mithril-client-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ slog-bunyan = "2.5.0"
4747
slog-scope = "4.4.0"
4848
slog-term = "2.9.0"
4949
thiserror = "1.0.56"
50-
tokio = { version = "1.35.1", features = ["full"] }
50+
tokio = { version = "1.37.0", features = ["full"] }
5151

5252
[dev-dependencies]
5353
mithril-common = { path = "../mithril-common", features = ["test_tools"] }

mithril-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ slog = "2.7.0"
3939
strum = { version = "0.26.1", features = ["derive"] }
4040
tar = { version = "0.4.40", optional = true }
4141
thiserror = "1.0.56"
42-
tokio = { version = "1.35.1", features = ["sync"] }
42+
tokio = { version = "1.37.0", features = ["sync"] }
4343
uuid = { version = "1.7.0", features = ["v4"] }
4444
zstd = { version = "0.13.0", optional = true }
4545

@@ -64,7 +64,7 @@ mockall = "0.12.1"
6464
slog-async = "2.8.0"
6565
slog-scope = "4.4.0"
6666
slog-term = "2.9.0"
67-
tokio = { version = "1.35.1", features = ["macros", "rt"] }
67+
tokio = { version = "1.37.0", features = ["macros", "rt"] }
6868
warp = "0.3.6"
6969

7070
[features]

mithril-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ sha2 = "0.10.8"
6868
slog = "2.7.0"
6969
strum = { version = "0.26.1", features = ["derive"] }
7070
thiserror = "1.0.56"
71-
tokio = { version = "1.35.1", features = ["io-util", "rt", "sync"] }
71+
tokio = { version = "1.37.0", features = ["io-util", "rt", "sync"] }
7272
typetag = "0.2.15"
7373
walkdir = "2.4.0"
7474
warp = { version = "0.3.6", optional = true }
@@ -99,7 +99,7 @@ reqwest = { version = "0.12.0", features = ["json"] }
9999
slog-async = "2.8.0"
100100
slog-scope = "4.4.0"
101101
slog-term = "2.9.0"
102-
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "time"] }
102+
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "time"] }
103103

104104
[build-dependencies]
105105
mithril-build-script = { path = "../internal/mithril-build-script", version = "=0.2.0" }

mithril-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ slog-bunyan = "2.5.0"
3636
slog-scope = "4.4.0"
3737
sqlite = { version = "0.34.0", features = ["bundled"] }
3838
thiserror = "1.0.56"
39-
tokio = { version = "1.35.1", features = ["full"] }
39+
tokio = { version = "1.37.0", features = ["full"] }
4040

4141
[target.'cfg(not(target_env = "msvc"))'.dependencies]
4242
tikv-jemallocator = { version = "0.5.4", optional = true }

mithril-test-lab/mithril-aggregator-fake/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ serde = { version = "1.0.196", features = ["derive"] }
1919
serde_json = "1.0.113"
2020
signal-hook = "0.3.17"
2121
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
22-
tokio = { version = "1.35.1", features = ["full"] }
22+
tokio = { version = "1.37.0", features = ["full"] }
2323
tower-http = { version = "0.5.1", features = ["trace", "cors"] }
2424
tracing = "0.1.40"
2525
tracing-subscriber = "0.3.18"

0 commit comments

Comments
 (0)