build: make 'microfetch' crate publishable; bump hotpath
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

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I70d4385edb8ec8fe94bb7742177686846a6a6964
This commit is contained in:
raf 2026-04-13 09:19:50 +03:00
commit b385714d88
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 37 additions and 5 deletions

38
Cargo.lock generated
View file

@ -460,7 +460,7 @@ dependencies = [
"eyre",
"futures-util",
"hdrhistogram",
"hotpath-macros",
"hotpath-macros 0.14.1",
"libc",
"mach2",
"pin-project-lite",
@ -473,6 +473,17 @@ dependencies = [
"tokio",
]
[[package]]
name = "hotpath"
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"
@ -484,6 +495,27 @@ dependencies = [
"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"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4fcd1a53780c79401c81008b262470386d6dfee64599b337cae37a9674c082d"
[[package]]
name = "hotpath-meta"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4aadd604c1aac308bda11d4792ae46c2076acd0523e401ee8640f101c0b99653"
dependencies = [
"hotpath-macros-meta",
]
[[package]]
name = "httpdate"
version = "1.0.3"
@ -581,7 +613,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
name = "microfetch"
version = "1.0.0"
dependencies = [
"hotpath",
"hotpath 0.15.0",
"microfetch-alloc",
"microfetch-asm",
"microfetch-lib",
@ -608,7 +640,7 @@ dependencies = [
name = "microfetch-lib"
version = "1.0.0"
dependencies = [
"hotpath",
"hotpath 0.14.1",
"microfetch-asm",
]

View file

@ -8,10 +8,10 @@ rust-version.workspace = true
license.workspace = true
readme = "../docs/README.md"
repository = "https://github.com/notashelf/microfetch"
publish = false
publish = true
[dependencies]
hotpath = { optional = true, version = "0.14.0" }
hotpath = { optional = true, version = "0.15.0" }
microfetch-alloc.workspace = true
microfetch-asm.workspace = true
microfetch-lib.workspace = true