From c1bc63aa732cfeb81aebb90f853cb4753a0536dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 20:01:46 +0000 Subject: [PATCH] chore: bump hotpath from 0.16.0 to 0.16.1 Bumps [hotpath](https://github.com/pawurb/hotpath-rs) from 0.16.0 to 0.16.1. - [Release notes](https://github.com/pawurb/hotpath-rs/releases) - [Changelog](https://github.com/pawurb/hotpath-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/pawurb/hotpath-rs/compare/v0.16.0...v0.16.1) --- updated-dependencies: - dependency-name: hotpath dependency-version: 0.16.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++++++++++++++++++-------- crates/lib/Cargo.toml | 2 +- microfetch/Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc3007c..27ba138 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -32,6 +32,15 @@ version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" +[[package]] +name = "arc-swap" +version = "1.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207" +dependencies = [ + "rustversion", +] + [[package]] name = "ascii" version = "1.1.0" @@ -349,10 +358,11 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" [[package]] name = "hotpath" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0482d7c2c47acfec79b90e55188e8b86c66fd9d541335eac3ce3f73055984643" +checksum = "bff002d5c53fa1c6891f32156b9451d16654bc8a761894d7660b25c0a332d517" dependencies = [ + "arc-swap", "cfg-if", "crossbeam-channel", "futures-util", @@ -372,9 +382,9 @@ dependencies = [ [[package]] name = "hotpath-macros" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0a541a2ab3263fcf42ff399ec68ddd458f4883aa656c6229f59092f94058eb2" +checksum = "9e2f4ac4534511584b7082657e133dcf3d8727b2f456a6b2a2c3eb02b82c1277" dependencies = [ "proc-macro2", "quote", @@ -383,15 +393,15 @@ dependencies = [ [[package]] name = "hotpath-macros-meta" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08986d10e50e7c6c8e1798fb1bd63cdf275c0b59d6aad05989d5d86a0f2cb06e" +checksum = "a6a87070853e9402ec79184f8d8d930d7eb86cd274aecdcf973f73b6f40271b0" [[package]] name = "hotpath-meta" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fec29ccaa713ecf406bb6717331972fd2b932d889ddcc2bada67b264693fb9bf" +checksum = "c31cfef2b9d280ad754c23b40b50cc74676489597f3cebfe0c180389e08a53ed" dependencies = [ "hotpath-macros-meta", ] diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 73ad731..43c9eb8 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true publish = false [dependencies] -hotpath = { optional = true, version = "0.16.0" } +hotpath = { optional = true, version = "0.16.1" } microfetch-asm.workspace = true [features] diff --git a/microfetch/Cargo.toml b/microfetch/Cargo.toml index 87ce698..b5532d1 100644 --- a/microfetch/Cargo.toml +++ b/microfetch/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/notashelf/microfetch" publish = true [dependencies] -hotpath = { optional = true, version = "0.16.0" } +hotpath = { optional = true, version = "0.16.1" } microfetch-alloc.workspace = true microfetch-asm.workspace = true microfetch-lib.workspace = true