diff --git a/Cargo.lock b/Cargo.lock index 465a747..63d5219 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", ] diff --git a/microfetch/Cargo.toml b/microfetch/Cargo.toml index 43d4f9c..445a473 100644 --- a/microfetch/Cargo.toml +++ b/microfetch/Cargo.toml @@ -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