Skip to content

Commit 8720292

Browse files
Update Rust crate tokio to v1.43.0 (#10347)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c2e8b11 commit 8720292

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ tar = "=0.4.43"
116116
tempfile = "=3.15.0"
117117
thiserror = "=2.0.9"
118118
tikv-jemallocator = { version = "=0.6.0", features = ['unprefixed_malloc_on_supported_platforms', 'profiling'] }
119-
tokio = { version = "=1.42.0", features = ["net", "signal", "io-std", "io-util", "rt-multi-thread", "macros", "process"]}
119+
tokio = { version = "=1.43.0", features = ["net", "signal", "io-std", "io-util", "rt-multi-thread", "macros", "process"]}
120120
tokio-postgres = "=0.7.12"
121121
tokio-util = "=0.7.13"
122122
toml = "=0.8.19"
@@ -142,5 +142,5 @@ diesel = { version = "=2.2.6", features = ["r2d2"] }
142142
googletest = "=0.13.0"
143143
insta = { version = "=1.42.0", features = ["glob", "json", "redactions"] }
144144
regex = "=1.11.1"
145-
tokio = "=1.42.0"
145+
tokio = "=1.43.0"
146146
zip = { version = "=2.2.2", default-features = false, features = ["deflate"] }

crates/crates_io_cdn_logs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ percent-encoding = "=2.3.1"
1616
semver = "=1.0.24"
1717
serde = { version = "=1.0.217", features = ["derive"] }
1818
serde_json = "=1.0.135"
19-
tokio = { version = "=1.42.0", features = ["io-util"] }
19+
tokio = { version = "=1.43.0", features = ["io-util"] }
2020
tracing = "=0.1.41"
2121

2222
[dev-dependencies]
2323
claims = "=0.8.0"
2424
clap = { version = "=4.5.24", features = ["derive"] }
2525
criterion = { version = "=0.5.1", features = ["async_tokio"] }
2626
insta = "=1.42.0"
27-
tokio = { version = "=1.42.0", features = ["fs", "macros", "rt", "rt-multi-thread"] }
27+
tokio = { version = "=1.43.0", features = ["fs", "macros", "rt", "rt-multi-thread"] }
2828
tracing-subscriber = { version = "=0.3.19", features = ["env-filter"] }
2929

3030
[[bench]]

crates/crates_io_database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ diesel_full_text_search = "=2.2.0"
1414
[dev-dependencies]
1515
crates_io_test_db = { path = "../crates_io_test_db" }
1616
diesel-async = { version = "=0.5.2", features = ["postgres"] }
17-
tokio = { version = "=1.42.0", features = ["macros", "rt"] }
17+
tokio = { version = "=1.43.0", features = ["macros", "rt"] }

crates/crates_io_database_dump/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ crates_io_test_db = { path = "../crates_io_test_db" }
2525
diesel = "=2.2.6"
2626
diesel-async = { version = "=0.5.2", features = ["postgres"] }
2727
insta = { version = "=1.42.0", features = ["glob"] }
28-
tokio = { version = "=1.42.0", features = ["macros", "rt"] }
28+
tokio = { version = "=1.43.0", features = ["macros", "rt"] }

crates/crates_io_pagerduty/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ serde = { version = "=1.0.217", features = ["derive"] }
1515

1616
[dev-dependencies]
1717
clap = { version = "=4.5.24", features = ["derive", "env", "unicode", "wrap_help"] }
18-
tokio = { version = "=1.42.0", features = ["macros", "rt-multi-thread"] }
18+
tokio = { version = "=1.43.0", features = ["macros", "rt-multi-thread"] }

crates/crates_io_smoke_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ serde = { version = "=1.0.217", features = ["derive"] }
2020
serde_json = "=1.0.135"
2121
tempfile = "=3.15.0"
2222
thiserror = "=2.0.9"
23-
tokio = { version = "=1.42.0", features = ["fs", "macros", "process", "rt-multi-thread"]}
23+
tokio = { version = "=1.43.0", features = ["fs", "macros", "process", "rt-multi-thread"]}
2424
tracing = "=0.1.41"
2525
tracing-subscriber = { version = "=0.3.19", features = ["env-filter"] }

crates/crates_io_tarball/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ serde_json = "=1.0.135"
1818
tar = { version = "=0.4.43", optional = true }
1919
thiserror = "=2.0.9"
2020
tracing = "=0.1.41"
21-
tokio = { version = "=1.42.0", features = ["io-util", "macros", "rt-multi-thread"] }
21+
tokio = { version = "=1.43.0", features = ["io-util", "macros", "rt-multi-thread"] }
2222
async-compression = { version = "=0.4.18", default-features = false, features = ["gzip", "tokio"] }
2323
krata-tokio-tar = "=0.4.2"
2424
futures-util = "=0.3.31"

crates/crates_io_team_repo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ reqwest = { version = "=0.12.12", features = ["gzip", "json"] }
1818
serde = { version = "=1.0.217", features = ["derive"] }
1919

2020
[dev-dependencies]
21-
tokio = { version = "=1.42.0", features = ["macros", "rt-multi-thread"] }
21+
tokio = { version = "=1.43.0", features = ["macros", "rt-multi-thread"] }

crates/crates_io_worker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ sentry-core = { version = "=0.36.0", features = ["client"] }
1717
serde = { version = "=1.0.217", features = ["derive"] }
1818
serde_json = "=1.0.135"
1919
thiserror = "=2.0.9"
20-
tokio = { version = "=1.42.0", features = ["rt", "time"]}
20+
tokio = { version = "=1.43.0", features = ["rt", "time"]}
2121
tracing = "=0.1.41"
2222

2323
[dev-dependencies]
2424
claims = "=0.8.0"
2525
crates_io_test_db = { path = "../crates_io_test_db" }
2626
insta = { version = "=1.42.0", features = ["json"] }
27-
tokio = { version = "=1.42.0", features = ["macros", "sync"]}
27+
tokio = { version = "=1.43.0", features = ["macros", "sync"]}

0 commit comments

Comments
 (0)