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] <support@github.com>
This commit is contained in:
dependabot[bot] 2026-05-18 20:01:46 +00:00 committed by GitHub
commit c1bc63aa73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 10 deletions

26
Cargo.lock generated
View file

@ -32,6 +32,15 @@ version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" 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]] [[package]]
name = "ascii" name = "ascii"
version = "1.1.0" version = "1.1.0"
@ -349,10 +358,11 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
[[package]] [[package]]
name = "hotpath" name = "hotpath"
version = "0.16.0" version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0482d7c2c47acfec79b90e55188e8b86c66fd9d541335eac3ce3f73055984643" checksum = "bff002d5c53fa1c6891f32156b9451d16654bc8a761894d7660b25c0a332d517"
dependencies = [ dependencies = [
"arc-swap",
"cfg-if", "cfg-if",
"crossbeam-channel", "crossbeam-channel",
"futures-util", "futures-util",
@ -372,9 +382,9 @@ dependencies = [
[[package]] [[package]]
name = "hotpath-macros" name = "hotpath-macros"
version = "0.16.0" version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0a541a2ab3263fcf42ff399ec68ddd458f4883aa656c6229f59092f94058eb2" checksum = "9e2f4ac4534511584b7082657e133dcf3d8727b2f456a6b2a2c3eb02b82c1277"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -383,15 +393,15 @@ dependencies = [
[[package]] [[package]]
name = "hotpath-macros-meta" name = "hotpath-macros-meta"
version = "0.16.0" version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08986d10e50e7c6c8e1798fb1bd63cdf275c0b59d6aad05989d5d86a0f2cb06e" checksum = "a6a87070853e9402ec79184f8d8d930d7eb86cd274aecdcf973f73b6f40271b0"
[[package]] [[package]]
name = "hotpath-meta" name = "hotpath-meta"
version = "0.16.0" version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fec29ccaa713ecf406bb6717331972fd2b932d889ddcc2bada67b264693fb9bf" checksum = "c31cfef2b9d280ad754c23b40b50cc74676489597f3cebfe0c180389e08a53ed"
dependencies = [ dependencies = [
"hotpath-macros-meta", "hotpath-macros-meta",
] ]

View file

@ -9,7 +9,7 @@ license.workspace = true
publish = false publish = false
[dependencies] [dependencies]
hotpath = { optional = true, version = "0.16.0" } hotpath = { optional = true, version = "0.16.1" }
microfetch-asm.workspace = true microfetch-asm.workspace = true
[features] [features]

View file

@ -11,7 +11,7 @@ repository = "https://github.com/notashelf/microfetch"
publish = true publish = true
[dependencies] [dependencies]
hotpath = { optional = true, version = "0.16.0" } hotpath = { optional = true, version = "0.16.1" }
microfetch-alloc.workspace = true microfetch-alloc.workspace = true
microfetch-asm.workspace = true microfetch-asm.workspace = true
microfetch-lib.workspace = true microfetch-lib.workspace = true