From f4bbbe69b46447b4811ed125cf5e65b3f0a81fd5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 13:05:29 -0400 Subject: [PATCH] Update Rust crate waker-fn to v1.2.0 (#15289) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [waker-fn](https://togithub.com/smol-rs/waker-fn) | dependencies | minor | `1.1.0` -> `1.2.0` | --- ### Release Notes
smol-rs/waker-fn (waker-fn) ### [`v1.2.0`](https://togithub.com/smol-rs/waker-fn/blob/HEAD/CHANGELOG.md#Version-120) [Compare Source](https://togithub.com/smol-rs/waker-fn/compare/v1.1.1...v1.2.0) - Add a new `portable-atomic` feature that allows for the usage of the `portable-atomic` crate to implement `waker-fn`. ([#​10](https://togithub.com/smol-rs/waker-fn/issues/10)) ### [`v1.1.1`](https://togithub.com/smol-rs/waker-fn/blob/HEAD/CHANGELOG.md#Version-111) [Compare Source](https://togithub.com/smol-rs/waker-fn/compare/v1.1.0...v1.1.1) - Reimplement using 100% safe code. ([#​7](https://togithub.com/smol-rs/waker-fn/issues/7))
--- ### Configuration 📅 **Schedule**: Branch creation - "after 3pm on Wednesday" in timezone America/New_York, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, 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 --- Release Notes: - N/A --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Marshall Bowers --- Cargo.lock | 4 ++-- crates/gpui/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d3ecab478..7abfef3f7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12097,9 +12097,9 @@ dependencies = [ [[package]] name = "waker-fn" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" +checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" [[package]] name = "walkdir" diff --git a/crates/gpui/Cargo.toml b/crates/gpui/Cargo.toml index d37ba7f7ab..080bc8b3c4 100644 --- a/crates/gpui/Cargo.toml +++ b/crates/gpui/Cargo.toml @@ -73,7 +73,7 @@ thiserror.workspace = true time.workspace = true util.workspace = true uuid.workspace = true -waker-fn = "1.1.0" +waker-fn = "1.2.0" [dev-dependencies] backtrace = "0.3"