From bf09892e946de89e8585233c5406c05445a9816b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 20:16:32 +0000 Subject: [PATCH] chore(deps): update rust crate tokio to 1.42.0 (#71) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [tokio](https://tokio.rs) ([source](https://redirect.github.com/tokio-rs/tokio)) | dependencies | minor | `1.41.1` -> `1.42.0` | --- ### Release Notes
tokio-rs/tokio (tokio) ### [`v1.42.0`](https://redirect.github.com/tokio-rs/tokio/releases/tag/tokio-1.42.0): Tokio v1.42.0 [Compare Source](https://redirect.github.com/tokio-rs/tokio/compare/tokio-1.41.1...tokio-1.42.0) ##### 1.42.0 (Dec 3rd, 2024) ##### Added - io: add `AsyncFd::{try_io, try_io_mut}` ([#​6967]) ##### Fixed - io: avoid `ptr->ref->ptr` roundtrip in RegistrationSet ([#​6929]) - runtime: do not defer `yield_now` inside `block_in_place` ([#​6999]) ##### Changes - io: simplify io readiness logic ([#​6966]) ##### Documented - net: fix docs for `tokio::net::unix::{pid_t, gid_t, uid_t}` ([#​6791]) - time: fix a typo in `Instant` docs ([#​6982]) [#​6791]: https://redirect.github.com/tokio-rs/tokio/pull/6791 [#​6929]: https://redirect.github.com/tokio-rs/tokio/pull/6929 [#​6966]: https://redirect.github.com/tokio-rs/tokio/pull/6966 [#​6967]: https://redirect.github.com/tokio-rs/tokio/pull/6967 [#​6982]: https://redirect.github.com/tokio-rs/tokio/pull/6982 [#​6999]: https://redirect.github.com/tokio-rs/tokio/pull/6999
--- ### Configuration 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Boshen/criterion2.rs). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a44c0af..57c32b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -945,9 +945,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.41.1" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "pin-project-lite", diff --git a/Cargo.toml b/Cargo.toml index a645378..5ed9caa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ oorandom = "11.1.4" rayon = { version = "1.10", optional = true } futures = { version = "0.3.31", default-features = false, optional = true } smol = { version = "2.0.2", default-features = false, optional = true } -tokio = { version = "1.41.1", default-features = false, features = ["rt"], optional = true } +tokio = { version = "1.42.0", default-features = false, features = ["rt"], optional = true } async-std = { version = "1.13.0", optional = true } codspeed = { version = "2.7.2", optional = true } colored = { version = "2.1.0", optional = true }