From 9307cffd460ec8474f80df89c30483e3cfb6e043 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 11:19:09 +0300 Subject: [PATCH] Update Rust crate ipc-channel to v0.18.2 (#15579) 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 | |---|---|---|---| | [ipc-channel](https://togithub.com/servo/ipc-channel) | dependencies | patch | `0.18.0` -> `0.18.2` | --- ### Release Notes
servo/ipc-channel (ipc-channel) ### [`v0.18.2`](https://togithub.com/servo/ipc-channel/releases/tag/v0.18.2) [Compare Source](https://togithub.com/servo/ipc-channel/compare/v0.18.1...v0.18.2) Changes: - Upgraded to version `1.0` of `mio` ### [`v0.18.1`](https://togithub.com/servo/ipc-channel/releases/tag/v0.18.1) [Compare Source](https://togithub.com/servo/ipc-channel/compare/v0.18.0...v0.18.1) Includes [https://github.com/servo/ipc-channel/pull/335](https://togithub.com/servo/ipc-channel/pull/335)
--- ### 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> --- Cargo.lock | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 933a78563692b415824a3015f000af8626b38251..31c77d84e6d285772b50f3012329e39c5645af9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5683,16 +5683,16 @@ dependencies = [ [[package]] name = "ipc-channel" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ab3a34c91b7e84a72643bd75d1bac3afd241f78f9859fe0b5e5b2a6a75732c2" +checksum = "e46231d1db8ea8f874012b1b87efb9e968f763c577220372a9c7caadce1448da" dependencies = [ "bincode", "crossbeam-channel", "fnv", "lazy_static", "libc", - "mio", + "mio 1.0.1", "rand 0.8.5", "serde", "tempfile", @@ -6664,6 +6664,19 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "mio" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" +dependencies = [ + "hermit-abi", + "libc", + "log", + "wasi 0.11.0+wasi-snapshot-preview1", + "windows-sys 0.52.0", +] + [[package]] name = "miow" version = "0.6.0" @@ -6903,7 +6916,7 @@ dependencies = [ "kqueue", "libc", "log", - "mio", + "mio 0.8.11", "walkdir", "windows-sys 0.48.0", ] @@ -11221,7 +11234,7 @@ dependencies = [ "backtrace", "bytes 1.5.0", "libc", - "mio", + "mio 0.8.11", "num_cpus", "parking_lot", "pin-project-lite",