Merge pull request #64 from NotAShelf/dependabot/cargo/hotpath-0.15.0
Some checks failed
Rust / Test on aarch64-unknown-linux-gnu (push) Has been cancelled
Rust / Test on riscv64gc-unknown-linux-gnu (push) Has been cancelled
Rust / Test on x86_64-unknown-linux-gnu (push) Has been cancelled

build: bump hotpath from 0.14.1 to 0.15.0
This commit is contained in:
raf 2026-04-16 08:56:18 +03:00 committed by GitHub
commit 136d5bcb58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 25 deletions

32
Cargo.lock generated
View file

@ -448,9 +448,9 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
[[package]]
name = "hotpath"
version = "0.14.1"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d9982fcb4356a5260502f0e646411ec1feb2962cc98c230777104a8d1c5ed3"
checksum = "28594d8a3d30371e1488dcd6ba545bf07e9ce9dff6d8a57d70dbbaa221d3246d"
dependencies = [
"arc-swap",
"cfg-if",
@ -460,7 +460,8 @@ dependencies = [
"eyre",
"futures-util",
"hdrhistogram",
"hotpath-macros 0.14.1",
"hotpath-macros",
"hotpath-meta",
"libc",
"mach2",
"pin-project-lite",
@ -474,33 +475,16 @@ dependencies = [
]
[[package]]
name = "hotpath"
name = "hotpath-macros"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28594d8a3d30371e1488dcd6ba545bf07e9ce9dff6d8a57d70dbbaa221d3246d"
dependencies = [
"hotpath-macros 0.15.0",
"hotpath-meta",
"tokio",
]
[[package]]
name = "hotpath-macros"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4398eddb78466298f1ddcc739abbbd8a942e541d1972c7590bd83de364e626e0"
checksum = "c7b87d58f92c09858091f328521db329955e9fc960c3c9c55e5dc0ef228a37b0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "hotpath-macros"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7b87d58f92c09858091f328521db329955e9fc960c3c9c55e5dc0ef228a37b0"
[[package]]
name = "hotpath-macros-meta"
version = "0.15.0"
@ -613,7 +597,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
name = "microfetch"
version = "1.1.0"
dependencies = [
"hotpath 0.15.0",
"hotpath",
"microfetch-alloc",
"microfetch-asm",
"microfetch-lib",
@ -640,7 +624,7 @@ dependencies = [
name = "microfetch-lib"
version = "1.1.0"
dependencies = [
"hotpath 0.14.1",
"hotpath",
"microfetch-asm",
]

View file

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