mirror of
https://github.com/NotAShelf/microfetch.git
synced 2026-03-07 08:36:03 +00:00
Compare commits
No commits in common. "6eb30c85bf8121edcd6c61b86a5064ee4f547c6f" and "544cb43b26c3ee0d2f79a3dbfaf989044951cabd" have entirely different histories.
6eb30c85bf
...
544cb43b26
4 changed files with 14 additions and 7 deletions
2
.github/workflows/hotpath-comment.yml
vendored
2
.github/workflows/hotpath-comment.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download profiling results
|
- name: Download profiling results
|
||||||
uses: actions/download-artifact@v8
|
uses: actions/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: hotpath-results
|
name: hotpath-results
|
||||||
path: /tmp/
|
path: /tmp/
|
||||||
|
|
|
||||||
2
.github/workflows/hotpath-profile.yml
vendored
2
.github/workflows/hotpath-profile.yml
vendored
|
|
@ -53,7 +53,7 @@ jobs:
|
||||||
echo '${{ github.event.pull_request.number }}' > /tmp/pr_number.txt
|
echo '${{ github.event.pull_request.number }}' > /tmp/pr_number.txt
|
||||||
|
|
||||||
- name: Upload profiling results
|
- name: Upload profiling results
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: hotpath-results
|
name: hotpath-results
|
||||||
path: |
|
path: |
|
||||||
|
|
|
||||||
15
Cargo.lock
generated
15
Cargo.lock
generated
|
|
@ -94,6 +94,12 @@ version = "1.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "base64"
|
||||||
|
version = "0.22.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitflags"
|
name = "bitflags"
|
||||||
version = "2.9.0"
|
version = "2.9.0"
|
||||||
|
|
@ -435,11 +441,12 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hotpath"
|
name = "hotpath"
|
||||||
version = "0.11.0"
|
version = "0.10.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "14e824029e8ae4de779bd5087c3e06b4bf272736ace49d5f8137fdc49a497143"
|
checksum = "2dc168af8ef9f2f803292b6eca3bba81daca09df4f019f1d589d4392cc4a84e9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
|
"base64",
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"clap",
|
"clap",
|
||||||
"colored",
|
"colored",
|
||||||
|
|
@ -462,9 +469,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hotpath-macros"
|
name = "hotpath-macros"
|
||||||
version = "0.11.0"
|
version = "0.10.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "aec0045cb18ddd3e8df0970e1950a838f7100f79aac1758ea15755e01c322c21"
|
checksum = "b2bcbc49dbb85d4226c95a61ab989247ceddb4901c679bcfcab39e586c3e26ad"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ name = "microfetch"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
hotpath = { optional = true, version = "0.11.0" }
|
hotpath = { optional = true, version = "0.10.1" }
|
||||||
libc = "0.2.182"
|
libc = "0.2.182"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue