mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-26 00:50:48 +00:00
Compare commits
98 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ed8c79bccf | ||
|
|
3c3f0e7afe | ||
|
|
fe9759bf44 | ||
|
|
1e776e73eb | ||
|
|
e3962fab5a | ||
|
|
e523301c9a | ||
|
|
532d86a8fb | ||
|
|
8c39981484 | ||
|
|
68f28718b7 | ||
|
|
fdc017f43f | ||
|
|
cb2009e5c3 | ||
|
|
a2ff97ae7a | ||
|
|
a5cf56823e | ||
|
|
8cf9030516 | ||
|
|
8f8a41fe98 | ||
|
|
ef1f08ff7e | ||
|
|
a02fbc62df | ||
|
|
423586137a | ||
|
|
a6c8026ad7 | ||
|
|
761f0a14e2 | ||
|
|
8d4cdddb55 | ||
|
|
acf70b3a1e | ||
|
|
99950f3fe0 | ||
|
|
d74bbb1f23 | ||
|
|
5bb2b11a56 | ||
|
|
f635080d9c | ||
|
|
5ce83af8b5 | ||
|
|
6aa8b420a5 | ||
|
|
17ded33f96 | ||
|
|
4a06140391 | ||
|
|
ffd430fe64 | ||
|
|
0139dfdb65 | ||
|
|
c4bf614c2f | ||
|
|
724f66b4c8 | ||
|
|
ec9269c9dd | ||
|
|
0cdd396109 | ||
|
|
a22e1808bb | ||
|
|
7549ed47d9 | ||
|
|
251c392daa | ||
|
|
a2130a3c52 | ||
|
|
b97519f3c3 | ||
|
|
6370ad43b8 | ||
|
|
c0f0193890 | ||
|
|
dee1038fc8 | ||
|
|
2f8caf5818 | ||
|
|
e40b8ce48c | ||
|
|
40d58ef19c | ||
|
|
ddaadeb897 | ||
|
|
92fe43c476 | ||
|
|
4954b85ec7 | ||
|
|
2b51c05cf7 | ||
|
|
3aaae1e038 | ||
|
|
8556ea401b | ||
|
|
2b9c32ad62 | ||
|
|
96c8587cb5 | ||
|
|
6d2c0be904 | ||
|
|
d435865fa6 | ||
|
|
182d494559 | ||
|
|
6da51af621 | ||
|
|
f1dbe47141 | ||
|
|
9957268b03 | ||
|
|
33e32f5507 | ||
|
|
7de9c3b078 | ||
|
|
b147340aa2 | ||
|
|
5b1c1a5544 | ||
|
|
19a057f9c1 | ||
|
|
dd2112f859 | ||
|
|
ca079cf073 | ||
|
|
df8c31f9bf | ||
|
|
45e0b9c640 | ||
|
|
9e8985f3cd | ||
|
|
ce24374b73 | ||
|
|
137568b070 | ||
|
|
32cafa544d | ||
|
|
df4e2c5813 | ||
|
|
6662e50b58 | ||
|
|
fe7bfc78d7 | ||
|
|
b5ee2ee0c2 | ||
|
|
f0e0e09968 | ||
|
|
adcdc5f593 | ||
|
|
6c9d919fa0 | ||
|
|
a5ee591cfb | ||
|
|
f725b9adf3 | ||
|
|
33a1d08515 | ||
|
|
5d427d86f0 | ||
|
|
ed8e59bd89 | ||
|
|
b4653a632e | ||
|
|
15d8c416d1 | ||
|
|
9b24cc93ef | ||
|
|
85c1f06374 | ||
|
|
ee9bdd084f | ||
|
|
9c04113bd6 | ||
|
|
e0464ce993 | ||
|
|
76b1741cb5 | ||
|
|
c6dc131d2c | ||
|
|
92585e4f79 | ||
|
|
32a9cb44cb | ||
|
|
662c1dd6eb |
1
.github/.cspell/project-dictionary.txt
vendored
1
.github/.cspell/project-dictionary.txt
vendored
@@ -24,7 +24,6 @@ protoc
|
|||||||
pwsh
|
pwsh
|
||||||
quickinstall
|
quickinstall
|
||||||
rclone
|
rclone
|
||||||
rdme
|
|
||||||
sccache
|
sccache
|
||||||
syft
|
syft
|
||||||
udeps
|
udeps
|
||||||
|
|||||||
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@@ -77,6 +77,12 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
|
- uses: taiki-e/checkout-action@v1
|
||||||
|
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||||
|
- run: rm Cargo.toml
|
||||||
|
- name: Generate tool list
|
||||||
|
id: tool-list
|
||||||
|
run: tools/ci/tool-list.sh "${{ matrix.tool }}" "${{ matrix.os }}" "${{ matrix.bash }}" >>"${GITHUB_OUTPUT}"
|
||||||
- run: |
|
- run: |
|
||||||
printf '%s\n' 'C:\msys64\mingw32\bin' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\msys64\mingw32\bin' >>"${GITHUB_PATH}"
|
||||||
printf '%s\n' 'C:\msys64\usr\bin' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\msys64\usr\bin' >>"${GITHUB_PATH}"
|
||||||
@@ -86,12 +92,6 @@ jobs:
|
|||||||
printf '%s\n' 'C:\tools\cygwin\bin' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\tools\cygwin\bin' >>"${GITHUB_PATH}"
|
||||||
printf '%s\n' 'C:\tools\cygwin\usr\bin' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\tools\cygwin\usr\bin' >>"${GITHUB_PATH}"
|
||||||
if: matrix.bash == 'cygwin'
|
if: matrix.bash == 'cygwin'
|
||||||
- uses: taiki-e/checkout-action@v1
|
|
||||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
|
||||||
- run: rm Cargo.toml
|
|
||||||
- name: Generate tool list
|
|
||||||
id: tool-list
|
|
||||||
run: tools/ci/tool-list.sh "${{ matrix.tool }}" "${{ matrix.os }}" "${{ matrix.bash }}" >>"${GITHUB_OUTPUT}"
|
|
||||||
- run: env
|
- run: env
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
|
|||||||
205
CHANGELOG.md
205
CHANGELOG.md
@@ -10,6 +10,174 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.46.11] - 2024-12-16
|
||||||
|
|
||||||
|
- Update `cargo-zigbuild@latest` to 0.19.7.
|
||||||
|
|
||||||
|
## [2.46.10] - 2024-12-16
|
||||||
|
|
||||||
|
- Update `cargo-zigbuild@latest` to 0.19.6.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.17.
|
||||||
|
|
||||||
|
## [2.46.9] - 2024-12-14
|
||||||
|
|
||||||
|
- Update `syft@latest` to 1.18.1.
|
||||||
|
|
||||||
|
## [2.46.8] - 2024-12-13
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.28.3.
|
||||||
|
|
||||||
|
- Update `cargo-nextest@latest` to 0.9.86.
|
||||||
|
|
||||||
|
- Update `cargo-lambda@latest` to 1.6.0.
|
||||||
|
|
||||||
|
## [2.46.7] - 2024-12-12
|
||||||
|
|
||||||
|
- Update `cargo-semver-checks@latest` to 0.38.0.
|
||||||
|
|
||||||
|
## [2.46.6] - 2024-12-11
|
||||||
|
|
||||||
|
- Update `just@latest` to 1.38.0.
|
||||||
|
|
||||||
|
## [2.46.5] - 2024-12-10
|
||||||
|
|
||||||
|
- Update `syft@latest` to 1.18.0.
|
||||||
|
|
||||||
|
- Update `sccache@latest` to 0.9.0.
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.111.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.16.
|
||||||
|
|
||||||
|
## [2.46.4] - 2024-12-07
|
||||||
|
|
||||||
|
- Update `wasm-bindgen@latest` to 0.2.99.
|
||||||
|
|
||||||
|
## [2.46.3] - 2024-12-07
|
||||||
|
|
||||||
|
- Update `wasm-bindgen@latest` to 0.2.98.
|
||||||
|
|
||||||
|
## [2.46.2] - 2024-12-05
|
||||||
|
|
||||||
|
- Update `cargo-semver-checks@latest` to 0.37.0.
|
||||||
|
|
||||||
|
## [2.46.1] - 2024-12-04
|
||||||
|
|
||||||
|
- Update `protoc@latest` to 3.29.1.
|
||||||
|
|
||||||
|
## [2.46.0] - 2024-12-04
|
||||||
|
|
||||||
|
- Improve robustness of `cargo-binstall` fallback. ([#556](https://github.com/taiki-e/install-action/pull/556))
|
||||||
|
|
||||||
|
## [2.45.15] - 2024-12-03
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.28.2.
|
||||||
|
|
||||||
|
## [2.45.14] - 2024-12-02
|
||||||
|
|
||||||
|
- Update `dprint@latest` to 0.47.6.
|
||||||
|
|
||||||
|
## [2.45.13] - 2024-11-30
|
||||||
|
|
||||||
|
- Update `cargo-udeps@latest` to 0.1.53.
|
||||||
|
|
||||||
|
## [2.45.12] - 2024-11-30
|
||||||
|
|
||||||
|
- Update `wasm-bindgen@latest` to 0.2.97.
|
||||||
|
|
||||||
|
## [2.45.11] - 2024-11-30
|
||||||
|
|
||||||
|
- Update `cargo-zigbuild@latest` to 0.19.5.
|
||||||
|
|
||||||
|
## [2.45.10] - 2024-11-30
|
||||||
|
|
||||||
|
- Update `wasm-bindgen@latest` to 0.2.96.
|
||||||
|
|
||||||
|
## [2.45.9] - 2024-11-29
|
||||||
|
|
||||||
|
- Update `cargo-tarpaulin@latest` to 0.31.3.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.15.
|
||||||
|
|
||||||
|
## [2.45.8] - 2024-11-28
|
||||||
|
|
||||||
|
- Update `cargo-deny@latest` to 0.16.3.
|
||||||
|
|
||||||
|
- Update `protoc@latest` to 3.29.0.
|
||||||
|
|
||||||
|
## [2.45.7] - 2024-11-27
|
||||||
|
|
||||||
|
- Update `cargo-nextest@latest` to 0.9.85.
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.28.1.
|
||||||
|
|
||||||
|
- Update `mdbook@latest` to 0.4.43.
|
||||||
|
|
||||||
|
## [2.45.6] - 2024-11-24
|
||||||
|
|
||||||
|
- Update `cargo-auditable@latest` to 0.6.6.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.14.
|
||||||
|
|
||||||
|
## [2.45.5] - 2024-11-22
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.110.
|
||||||
|
|
||||||
|
## [2.45.4] - 2024-11-21
|
||||||
|
|
||||||
|
- Update `syft@latest` to 1.17.0.
|
||||||
|
|
||||||
|
## [2.45.3] - 2024-11-21
|
||||||
|
|
||||||
|
- Update `just@latest` to 1.37.0.
|
||||||
|
|
||||||
|
## [2.45.2] - 2024-11-20
|
||||||
|
|
||||||
|
- Update `wasmtime@latest` to 27.0.0.
|
||||||
|
|
||||||
|
## [2.45.1] - 2024-11-20
|
||||||
|
|
||||||
|
- Update `git-cliff@latest` to 2.7.0.
|
||||||
|
|
||||||
|
## [2.45.0] - 2024-11-19
|
||||||
|
|
||||||
|
- Support `cargo-auditable`. ([#741](https://github.com/taiki-e/install-action/pull/741), thanks @simonsan)
|
||||||
|
|
||||||
|
## [2.44.72] - 2024-11-19
|
||||||
|
|
||||||
|
- Update `cargo-dinghy@latest` to 0.8.0.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.13.
|
||||||
|
|
||||||
|
## [2.44.71] - 2024-11-16
|
||||||
|
|
||||||
|
- Update `cargo-nextest@latest` to 0.9.84.
|
||||||
|
|
||||||
|
- Update `rclone@latest` to 1.68.2.
|
||||||
|
|
||||||
|
## [2.44.70] - 2024-11-15
|
||||||
|
|
||||||
|
- Update `cargo-deny@latest` to 0.16.2.
|
||||||
|
|
||||||
|
## [2.44.69] - 2024-11-14
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.108.
|
||||||
|
|
||||||
|
## [2.44.68] - 2024-11-12
|
||||||
|
|
||||||
|
- Update `hyperfine@latest` to 1.19.0.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.12.
|
||||||
|
|
||||||
|
## [2.44.67] - 2024-11-08
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.27.3.
|
||||||
|
|
||||||
|
## [2.44.66] - 2024-11-08
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.107.
|
||||||
|
|
||||||
## [2.44.65] - 2024-11-08
|
## [2.44.65] - 2024-11-08
|
||||||
|
|
||||||
- Update `cargo-lambda@latest` to 1.5.0.
|
- Update `cargo-lambda@latest` to 1.5.0.
|
||||||
@@ -3050,7 +3218,42 @@ Note: This release is considered a breaking change because installing on version
|
|||||||
|
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.44.65...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.46.11...HEAD
|
||||||
|
[2.46.11]: https://github.com/taiki-e/install-action/compare/v2.46.10...v2.46.11
|
||||||
|
[2.46.10]: https://github.com/taiki-e/install-action/compare/v2.46.9...v2.46.10
|
||||||
|
[2.46.9]: https://github.com/taiki-e/install-action/compare/v2.46.8...v2.46.9
|
||||||
|
[2.46.8]: https://github.com/taiki-e/install-action/compare/v2.46.7...v2.46.8
|
||||||
|
[2.46.7]: https://github.com/taiki-e/install-action/compare/v2.46.6...v2.46.7
|
||||||
|
[2.46.6]: https://github.com/taiki-e/install-action/compare/v2.46.5...v2.46.6
|
||||||
|
[2.46.5]: https://github.com/taiki-e/install-action/compare/v2.46.4...v2.46.5
|
||||||
|
[2.46.4]: https://github.com/taiki-e/install-action/compare/v2.46.3...v2.46.4
|
||||||
|
[2.46.3]: https://github.com/taiki-e/install-action/compare/v2.46.2...v2.46.3
|
||||||
|
[2.46.2]: https://github.com/taiki-e/install-action/compare/v2.46.1...v2.46.2
|
||||||
|
[2.46.1]: https://github.com/taiki-e/install-action/compare/v2.46.0...v2.46.1
|
||||||
|
[2.46.0]: https://github.com/taiki-e/install-action/compare/v2.45.15...v2.46.0
|
||||||
|
[2.45.15]: https://github.com/taiki-e/install-action/compare/v2.45.14...v2.45.15
|
||||||
|
[2.45.14]: https://github.com/taiki-e/install-action/compare/v2.45.13...v2.45.14
|
||||||
|
[2.45.13]: https://github.com/taiki-e/install-action/compare/v2.45.12...v2.45.13
|
||||||
|
[2.45.12]: https://github.com/taiki-e/install-action/compare/v2.45.11...v2.45.12
|
||||||
|
[2.45.11]: https://github.com/taiki-e/install-action/compare/v2.45.10...v2.45.11
|
||||||
|
[2.45.10]: https://github.com/taiki-e/install-action/compare/v2.45.9...v2.45.10
|
||||||
|
[2.45.9]: https://github.com/taiki-e/install-action/compare/v2.45.8...v2.45.9
|
||||||
|
[2.45.8]: https://github.com/taiki-e/install-action/compare/v2.45.7...v2.45.8
|
||||||
|
[2.45.7]: https://github.com/taiki-e/install-action/compare/v2.45.6...v2.45.7
|
||||||
|
[2.45.6]: https://github.com/taiki-e/install-action/compare/v2.45.5...v2.45.6
|
||||||
|
[2.45.5]: https://github.com/taiki-e/install-action/compare/v2.45.4...v2.45.5
|
||||||
|
[2.45.4]: https://github.com/taiki-e/install-action/compare/v2.45.3...v2.45.4
|
||||||
|
[2.45.3]: https://github.com/taiki-e/install-action/compare/v2.45.2...v2.45.3
|
||||||
|
[2.45.2]: https://github.com/taiki-e/install-action/compare/v2.45.1...v2.45.2
|
||||||
|
[2.45.1]: https://github.com/taiki-e/install-action/compare/v2.45.0...v2.45.1
|
||||||
|
[2.45.0]: https://github.com/taiki-e/install-action/compare/v2.44.72...v2.45.0
|
||||||
|
[2.44.72]: https://github.com/taiki-e/install-action/compare/v2.44.71...v2.44.72
|
||||||
|
[2.44.71]: https://github.com/taiki-e/install-action/compare/v2.44.70...v2.44.71
|
||||||
|
[2.44.70]: https://github.com/taiki-e/install-action/compare/v2.44.69...v2.44.70
|
||||||
|
[2.44.69]: https://github.com/taiki-e/install-action/compare/v2.44.68...v2.44.69
|
||||||
|
[2.44.68]: https://github.com/taiki-e/install-action/compare/v2.44.67...v2.44.68
|
||||||
|
[2.44.67]: https://github.com/taiki-e/install-action/compare/v2.44.66...v2.44.67
|
||||||
|
[2.44.66]: https://github.com/taiki-e/install-action/compare/v2.44.65...v2.44.66
|
||||||
[2.44.65]: https://github.com/taiki-e/install-action/compare/v2.44.64...v2.44.65
|
[2.44.65]: https://github.com/taiki-e/install-action/compare/v2.44.64...v2.44.65
|
||||||
[2.44.64]: https://github.com/taiki-e/install-action/compare/v2.44.63...v2.44.64
|
[2.44.64]: https://github.com/taiki-e/install-action/compare/v2.44.63...v2.44.64
|
||||||
[2.44.63]: https://github.com/taiki-e/install-action/compare/v2.44.62...v2.44.63
|
[2.44.63]: https://github.com/taiki-e/install-action/compare/v2.44.62...v2.44.63
|
||||||
|
|||||||
3
TOOLS.md
3
TOOLS.md
@@ -13,6 +13,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
|
|||||||
| ---- | -------------------------------- | ------------------------------- | ------------------ | ------- |
|
| ---- | -------------------------------- | ------------------------------- | ------------------ | ------- |
|
||||||
| [**biome**](https://biomejs.dev) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/biomejs/biome/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT) |
|
| [**biome**](https://biomejs.dev) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/biomejs/biome/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT) |
|
||||||
| [**cargo-audit**](https://github.com/rustsec/rustsec/tree/HEAD/cargo-audit) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rustsec/rustsec/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-APACHE) OR [MIT](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-MIT) |
|
| [**cargo-audit**](https://github.com/rustsec/rustsec/tree/HEAD/cargo-audit) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rustsec/rustsec/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-APACHE) OR [MIT](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-MIT) |
|
||||||
|
| [**cargo-auditable**](https://github.com/rust-secure-code/cargo-auditable) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-secure-code/cargo-auditable/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-MIT) |
|
||||||
| [**cargo-binstall**](https://github.com/cargo-bins/cargo-binstall) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cargo-bins/cargo-binstall/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE) |
|
| [**cargo-binstall**](https://github.com/cargo-bins/cargo-binstall) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cargo-bins/cargo-binstall/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE) |
|
||||||
| [**cargo-careful**](https://github.com/RalfJung/cargo-careful) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/RalfJung/cargo-careful/releases) | Linux, macOS, Windows | [MIT](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-APACHE) |
|
| [**cargo-careful**](https://github.com/RalfJung/cargo-careful) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/RalfJung/cargo-careful/releases) | Linux, macOS, Windows | [MIT](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-APACHE) |
|
||||||
| [**cargo-cyclonedx**](https://github.com/CycloneDX/cyclonedx-rust-cargo) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-rust-cargo/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE) |
|
| [**cargo-cyclonedx**](https://github.com/CycloneDX/cyclonedx-rust-cargo) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-rust-cargo/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE) |
|
||||||
@@ -53,7 +54,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
|
|||||||
| [**parse-changelog**](https://github.com/taiki-e/parse-changelog) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/parse-changelog/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-MIT) |
|
| [**parse-changelog**](https://github.com/taiki-e/parse-changelog) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/parse-changelog/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-MIT) |
|
||||||
| [**protoc**](https://github.com/protocolbuffers/protobuf) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/protocolbuffers/protobuf/releases) | Linux, macOS, Windows | [BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE) |
|
| [**protoc**](https://github.com/protocolbuffers/protobuf) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/protocolbuffers/protobuf/releases) | Linux, macOS, Windows | [BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE) |
|
||||||
| [**rclone**](https://github.com/rclone/rclone) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/rclone/rclone/releases) | Linux, macOS, Windows | [MIT](https://github.com/rclone/rclone/blob/master/COPYING) |
|
| [**rclone**](https://github.com/rclone/rclone) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/rclone/rclone/releases) | Linux, macOS, Windows | [MIT](https://github.com/rclone/rclone/blob/master/COPYING) |
|
||||||
| [**release-plz**](https://release-plz.ieni.dev/) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/MarcoIeni/release-plz/releases) | Linux, macOS, Windows | [MIT](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-APACHE) |
|
| [**release-plz**](https://release-plz.dev/) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/release-plz/release-plz/releases) | Linux, macOS, Windows | [MIT](https://github.com/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE) |
|
||||||
| [**sccache**](https://github.com/mozilla/sccache) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/mozilla/sccache/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE) |
|
| [**sccache**](https://github.com/mozilla/sccache) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/mozilla/sccache/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE) |
|
||||||
| [**shellcheck**](https://www.shellcheck.net) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/koalaman/shellcheck/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/koalaman/shellcheck/blob/master/LICENSE) |
|
| [**shellcheck**](https://www.shellcheck.net) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/koalaman/shellcheck/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/koalaman/shellcheck/blob/master/LICENSE) |
|
||||||
| [**shfmt**](https://github.com/mvdan/sh) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/mvdan/sh/releases) | Linux, macOS, Windows | [BSD-3-Clause](https://github.com/mvdan/sh/blob/master/LICENSE) |
|
| [**shfmt**](https://github.com/mvdan/sh) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/mvdan/sh/releases) | Linux, macOS, Windows | [BSD-3-Clause](https://github.com/mvdan/sh/blob/master/LICENSE) |
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ runs:
|
|||||||
INPUT_TOOL: ${{ inputs.tool }}
|
INPUT_TOOL: ${{ inputs.tool }}
|
||||||
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
||||||
INPUT_FALLBACK: ${{ inputs.fallback }}
|
INPUT_FALLBACK: ${{ inputs.fallback }}
|
||||||
|
DEFAULT_GITHUB_TOKEN: ${{ github.token }}
|
||||||
if: runner.os != 'Windows'
|
if: runner.os != 'Windows'
|
||||||
- run: bash --noprofile --norc "${GITHUB_ACTION_PATH:?}/main.sh"
|
- run: bash --noprofile --norc "${GITHUB_ACTION_PATH:?}/main.sh"
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -53,4 +54,5 @@ runs:
|
|||||||
INPUT_TOOL: ${{ inputs.tool }}
|
INPUT_TOOL: ${{ inputs.tool }}
|
||||||
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
||||||
INPUT_FALLBACK: ${{ inputs.fallback }}
|
INPUT_FALLBACK: ${{ inputs.fallback }}
|
||||||
|
DEFAULT_GITHUB_TOKEN: ${{ github.token }}
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
|
|||||||
23
main.sh
23
main.sh
@@ -252,8 +252,8 @@ read_manifest() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
macos | windows)
|
macos | windows)
|
||||||
# Binaries compiled for x86_64 macOS will usually also work on aarch64 macOS.
|
# Binaries compiled for x86_64 macOS will usually also work on AArch64 macOS.
|
||||||
# Binaries compiled for x86_64 Windows will usually also work on aarch64 Windows 11+.
|
# Binaries compiled for x86_64 Windows will usually also work on AArch64 Windows 11+.
|
||||||
host_platform="${host_arch}_${host_os}"
|
host_platform="${host_arch}_${host_os}"
|
||||||
download_info=$(call_jq <<<"${manifest}" -r ".${host_platform}")
|
download_info=$(call_jq <<<"${manifest}" -r ".${host_platform}")
|
||||||
if [[ "${download_info}" == "null" ]] && [[ "${host_arch}" != "x86_64" ]]; then
|
if [[ "${download_info}" == "null" ]] && [[ "${host_arch}" != "x86_64" ]]; then
|
||||||
@@ -499,19 +499,19 @@ esac
|
|||||||
case "$(uname -m)" in
|
case "$(uname -m)" in
|
||||||
aarch64 | arm64) host_arch="aarch64" ;;
|
aarch64 | arm64) host_arch="aarch64" ;;
|
||||||
xscale | arm | armv*l)
|
xscale | arm | armv*l)
|
||||||
# Ignore arm for now, as we need to consider the version and whether hard-float is supported.
|
# Ignore Arm for now, as we need to consider the version and whether hard-float is supported.
|
||||||
# https://github.com/rust-lang/rustup/pull/593
|
# https://github.com/rust-lang/rustup/pull/593
|
||||||
# https://github.com/cross-rs/cross/pull/1018
|
# https://github.com/cross-rs/cross/pull/1018
|
||||||
# Does it seem only armv7l+ is supported?
|
# Does it seem only armv7l+ is supported?
|
||||||
# https://github.com/actions/runner/blob/v2.315.0/src/Misc/externals.sh#L189
|
# https://github.com/actions/runner/blob/v2.321.0/src/Misc/externals.sh#L178
|
||||||
# https://github.com/actions/runner/issues/688
|
# https://github.com/actions/runner/issues/688
|
||||||
bail "32-bit ARM runner is not supported yet by this action; if you need support for this platform, please submit an issue at <https://github.com/taiki-e/install-action>"
|
bail "32-bit Arm runner is not supported yet by this action; if you need support for this platform, please submit an issue at <https://github.com/taiki-e/install-action>"
|
||||||
;;
|
;;
|
||||||
# GitHub Actions Runner supports Linux (x86_64, aarch64, arm), Windows (x86_64, aarch64),
|
# GitHub Actions Runner supports Linux (x86_64, AArch64, Arm), Windows (x86_64, AArch64),
|
||||||
# and macOS (x86_64, aarch64).
|
# and macOS (x86_64, AArch64).
|
||||||
# https://github.com/actions/runner/blob/v2.315.0/.github/workflows/build.yml#L21
|
# https://github.com/actions/runner/blob/v2.321.0/.github/workflows/build.yml#L21
|
||||||
# https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners#supported-architectures-and-operating-systems-for-self-hosted-runners
|
# https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners#supported-architectures-and-operating-systems-for-self-hosted-runners
|
||||||
# So we can assume x86_64 unless it is aarch64 or arm.
|
# So we can assume x86_64 unless it is AArch64 or Arm.
|
||||||
*) host_arch="x86_64" ;;
|
*) host_arch="x86_64" ;;
|
||||||
esac
|
esac
|
||||||
info "host platform: ${host_arch}_${host_os}"
|
info "host platform: ${host_arch}_${host_os}"
|
||||||
@@ -790,7 +790,7 @@ for tool in "${tools[@]}"; do
|
|||||||
# wait-for-them up to 0.4.0 does not support --version flag.
|
# wait-for-them up to 0.4.0 does not support --version flag.
|
||||||
biome | cargo-machete | wait-for-them) rx "${tool_bin_stem}" --version || true ;;
|
biome | cargo-machete | wait-for-them) rx "${tool_bin_stem}" --version || true ;;
|
||||||
# these packages support neither --version nor --help flag.
|
# these packages support neither --version nor --help flag.
|
||||||
cargo-careful | wasm-bindgen-test-runner) ;;
|
cargo-auditable | cargo-careful | wasm-bindgen-test-runner) ;;
|
||||||
# wasm2es6js does not support --version flag and --help flag doesn't contains version info.
|
# wasm2es6js does not support --version flag and --help flag doesn't contains version info.
|
||||||
wasm2es6js) ;;
|
wasm2es6js) ;;
|
||||||
# cargo-zigbuild has no --version flag on `cargo zigbuild` subcommand.
|
# cargo-zigbuild has no --version flag on `cargo zigbuild` subcommand.
|
||||||
@@ -826,6 +826,9 @@ if [[ ${#unsupported_tools[@]} -gt 0 ]]; then
|
|||||||
info "install-action does not support ${unsupported_tools[*]}; fallback to cargo-binstall"
|
info "install-action does not support ${unsupported_tools[*]}; fallback to cargo-binstall"
|
||||||
IFS=$'\n\t'
|
IFS=$'\n\t'
|
||||||
install_cargo_binstall
|
install_cargo_binstall
|
||||||
|
if [[ -z "${GITHUB_TOKEN:-}" ]] && [[ -n "${DEFAULT_GITHUB_TOKEN:-}" ]]; then
|
||||||
|
export GITHUB_TOKEN="${DEFAULT_GITHUB_TOKEN}"
|
||||||
|
fi
|
||||||
# By default, cargo-binstall enforce downloads over secure transports only.
|
# By default, cargo-binstall enforce downloads over secure transports only.
|
||||||
# As a result, http will be disabled, and it will also set
|
# As a result, http will be disabled, and it will also set
|
||||||
# min tls version to be 1.2
|
# min tls version to be 1.2
|
||||||
|
|||||||
82
manifests/cargo-auditable.json
generated
Normal file
82
manifests/cargo-auditable.json
generated
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
{
|
||||||
|
"rust_crate": "cargo-auditable",
|
||||||
|
"template": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-x86_64-unknown-linux-musl.tar.xz",
|
||||||
|
"bin": "cargo-auditable-x86_64-unknown-linux-musl/cargo-auditable"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-x86_64-apple-darwin.tar.xz",
|
||||||
|
"bin": "cargo-auditable-x86_64-apple-darwin/cargo-auditable"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-x86_64-pc-windows-msvc.zip",
|
||||||
|
"bin": "cargo-auditable.exe"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-aarch64-apple-darwin.tar.xz",
|
||||||
|
"bin": "cargo-auditable-aarch64-apple-darwin/cargo-auditable"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"license_markdown": "[Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-MIT)",
|
||||||
|
"latest": {
|
||||||
|
"version": "0.6.6"
|
||||||
|
},
|
||||||
|
"0.6": {
|
||||||
|
"version": "0.6.6"
|
||||||
|
},
|
||||||
|
"0.6.6": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0C3D4484F0AE",
|
||||||
|
"checksum": "ccbec5ea7b120b27da34e267065110cc208a19d5e7bc15b41ef545a25e0e52c2"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0C3D45AF01FA",
|
||||||
|
"checksum": "6da9ff7263e2cc96c20400e34e2131ebce3610451e52cdfa1ae86b49211b03da"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0C3D454FE855",
|
||||||
|
"checksum": "cc9fedabae5097a755fab5c435cd616a0458894e01b8c5de6eceb189e784299b"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0C3D4664DB40",
|
||||||
|
"checksum": "fe7351c3fe4070da48901aee6d2661c2df1c6068dfef4b0b44a353d537e9cc66"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.6.5": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD026635663221",
|
||||||
|
"checksum": "1c8f1079d49ec7d29c134ed5e833c56552391db2eb8968a5a8e3cffebb160454"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0266371D1878",
|
||||||
|
"checksum": "6b7f9ae0eb0a70ab01fe37f776e901f86f22a270491944db1f169b6cc2a6162c"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD026636A97BCE",
|
||||||
|
"checksum": "4aa3d953cb90c177a46e5c70cbb4050e2e06d756cfd14a0d6fd28daf7d38967b"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD02663824ADB8",
|
||||||
|
"checksum": "635fe55a50e6dbb65caa1e45b5703c75a1a00a5dadddf40862c7e91012b06f94"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.6.4": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DC7C39FA3B2719",
|
||||||
|
"checksum": "e75d161e101be7f501e71e9dddd3f0c823e6776a45f884340ad42ec268321ea3"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DC7C39FB75C7E7",
|
||||||
|
"checksum": "02572f75d434ea03da5eac8b82230e4b3b9e2974549e22092bccb1ef92ac28ef"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DC7C39FB1638FE",
|
||||||
|
"checksum": "ea452ae7d3dbc2dd1f747861245be8fd6740da12b351f65c59a212df370b144c"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DC7C39FC410D14",
|
||||||
|
"checksum": "02e0faa19a9e9ceee43f83b2b557c536624a0c868307b9b2b3a5f617ef3b7cfb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
28
manifests/cargo-binstall.json
generated
28
manifests/cargo-binstall.json
generated
@@ -22,32 +22,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.10.11"
|
"version": "1.10.17"
|
||||||
},
|
},
|
||||||
"1.10.11": {
|
"1.10.17": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"etag": "0x8DCFDDD362609B5",
|
"etag": "0x8DD1C1188E2154D",
|
||||||
"checksum": "a81e0d53a6e9f45cba974a93a0dd8fe42f3acb4119b5eb99d47d49fe967e90dc"
|
"checksum": "d073d4e8901e176b0f625845f9a0bbd926a063017991d7cc0c863e6b884d2d59"
|
||||||
},
|
},
|
||||||
"x86_64_macos": {
|
"x86_64_macos": {
|
||||||
"etag": "0x8DCFDDCA8B181CC",
|
"etag": "0x8DD1C1106A79811",
|
||||||
"checksum": "0d206d9da36afb53b00673e05157296f4269f83a5c770d8dbc29391eb77df927"
|
"checksum": "16d557e8ea929d3ff310e7a3958a2d3b8c7d88005709dc46aebe57e4675d4be7"
|
||||||
},
|
},
|
||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"etag": "0x8DCFDDDD5572596",
|
"etag": "0x8DD1C1262D55EBB",
|
||||||
"checksum": "6e12c52f8cbc4ac77dffa37b44d5ffce75be6b05c6b78bd4f7d818926de15c0f"
|
"checksum": "3866b6c93534147c2382b2360b6d84681b3ff7ef623919d9bd08e53817df8c50"
|
||||||
},
|
},
|
||||||
"aarch64_linux_musl": {
|
"aarch64_linux_musl": {
|
||||||
"etag": "0x8DCFDDCC704C4F5",
|
"etag": "0x8DD1C111D1C3CE8",
|
||||||
"checksum": "e37e564e0d2992b1bb282805fa839fc9a1ffde698c35b66af58a0d23f537af30"
|
"checksum": "7250d4973167bbb0633773af98351fda151e7077efd0b582c149916d409dec75"
|
||||||
},
|
},
|
||||||
"aarch64_macos": {
|
"aarch64_macos": {
|
||||||
"etag": "0x8DCFDDCEDE668B7",
|
"etag": "0x8DD1C115B3B3306",
|
||||||
"checksum": "309ba5b82dec67dc5e3ead82487921447cf5d72ecfb3a9531551f09e3a507202"
|
"checksum": "81abb7de75ef130844bb58965bdb93969afadd0821cf5e1e1bd0517e48963199"
|
||||||
},
|
},
|
||||||
"aarch64_windows": {
|
"aarch64_windows": {
|
||||||
"etag": "0x8DCFDDD96C0243C",
|
"etag": "0x8DD1C1232EE4057",
|
||||||
"checksum": "ae1c2e0e05ed818419f077d89322047089fc65b5a0718f8ca6f7ea301e35254b"
|
"checksum": "c5ae6543a4b97372a163444468720984e41a6cd3eecd82fdf75c65528ec3f806"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
48
manifests/cargo-deny.json
generated
48
manifests/cargo-deny.json
generated
@@ -24,10 +24,54 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.16.1"
|
"version": "0.16.3"
|
||||||
},
|
},
|
||||||
"0.16": {
|
"0.16": {
|
||||||
"version": "0.16.1"
|
"version": "0.16.3"
|
||||||
|
},
|
||||||
|
"0.16.3": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0FB031A91E34",
|
||||||
|
"checksum": "2677a6184fdf3f77cb5de03d52a90eef15a8de3016cdf56289ce2d6be39a85cd"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0FB036910CFB",
|
||||||
|
"checksum": "dcc4707578c97f822f0374ca2c6c77ac2bdd2ca80bdd3f67f735f6a75db47379"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0FB09AC6BFDB",
|
||||||
|
"checksum": "18a3749546d54a8d3b9c71d87ec5b4c1d1724a5de9586c8f061ed8ea43060a45"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0FB03FB69CB1",
|
||||||
|
"checksum": "192a3e46d333555b7fe278ab26c4ebca69217aab1d850d3db49a300f7199d94d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0FB027C16683",
|
||||||
|
"checksum": "35bdf7a2321eeb9c3ef6b7ef448143c0d44dc2c1864683d45e9be24a6c848183"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.16.2": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0558E52679B5",
|
||||||
|
"checksum": "1acc7db00ebbf6f9c2b63a30017acfd07f43ce687469538cc691aa6a05aa3921"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0558E290B5A8",
|
||||||
|
"checksum": "c234f135a76f54009e66bfcd980fa23f8d72f672ef3f9f0030cfbf68ffd29769"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD05597BBC4C8F",
|
||||||
|
"checksum": "a63630e6c76df2aa1512cbdeb76f7b21091a31a9d8e4e624d6d0b219b996b95b"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0558EC8884C3",
|
||||||
|
"checksum": "f4996929042de3591688d329fb7a0f27875da6725e917713c5ce34dd02ba260b"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0558E3D00BF0",
|
||||||
|
"checksum": "14f544dfa89a15cdc6dbb0c0c3fb7c60f5b98db973586eb16c58cb8c56d64b59"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.16.1": {
|
"0.16.1": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
15
manifests/cargo-dinghy.json
generated
15
manifests/cargo-dinghy.json
generated
@@ -12,7 +12,20 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/sonos/dinghy/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/sonos/dinghy/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/sonos/dinghy/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/sonos/dinghy/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.7.3"
|
"version": "0.8.0"
|
||||||
|
},
|
||||||
|
"0.8": {
|
||||||
|
"version": "0.8.0"
|
||||||
|
},
|
||||||
|
"0.8.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD07EB5F95FDA4",
|
||||||
|
"checksum": "225c358aed6275a2de43c1a20006d23631013128b21a07c4977f8619a3970d08"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD07EBA1A526CA",
|
||||||
|
"checksum": "06c79e459ad2b46fd453eaea9da8bde01019214337134b521244e7d74251ee65"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.7": {
|
"0.7": {
|
||||||
"version": "0.7.3"
|
"version": "0.7.3"
|
||||||
|
|||||||
29
manifests/cargo-lambda.json
generated
29
manifests/cargo-lambda.json
generated
@@ -20,10 +20,35 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE)",
|
"license_markdown": "[MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.5.0"
|
"version": "1.6.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.5.0"
|
"version": "1.6.0"
|
||||||
|
},
|
||||||
|
"1.6": {
|
||||||
|
"version": "1.6.0"
|
||||||
|
},
|
||||||
|
"1.6.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1ADA9A0A21AB",
|
||||||
|
"checksum": "b9d6e8b13f10f2515d3b46d1969e9c3b09bbeb14fc6721374bee2639348dc4b0"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1ADA9AB924D6",
|
||||||
|
"checksum": "21036f919ffe33dc74d7dd0ad3388be6f28c7598b19d389a5b9a1a3ed86b8cc5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1ADA9B62FDB9",
|
||||||
|
"checksum": "34575d24c7ca49256611795ec14451fd2263a17383059307919b03991df15ab5"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD1ADA9C23EE2C",
|
||||||
|
"checksum": "5238b984b4096e48dd96a86699f7117816a13c0cc0ab6cc5d9e0a52472854cc5"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1ADA9CD3184B",
|
||||||
|
"checksum": "54134acab2927926975029fba6b881f61406588fa51f211253c13b9699b5fd25"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.5": {
|
"1.5": {
|
||||||
"version": "1.5.0"
|
"version": "1.5.0"
|
||||||
|
|||||||
96
manifests/cargo-nextest.json
generated
96
manifests/cargo-nextest.json
generated
@@ -19,10 +19,102 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
|
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.9.82"
|
"version": "0.9.86"
|
||||||
},
|
},
|
||||||
"0.9": {
|
"0.9": {
|
||||||
"version": "0.9.82"
|
"version": "0.9.86"
|
||||||
|
},
|
||||||
|
"0.9.86": {
|
||||||
|
"previous_stable_version": "0.9.85",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD1AEDAE2C209C",
|
||||||
|
"checksum": "3ce8bd1b7214b5753b276f1839aafbf209c331e94f753d1efd1d95e250637e30"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1AEDD2F94770",
|
||||||
|
"checksum": "b1c373954a835613705911e9933a81e6182ce6aab163a0ba16e32c3a1a967093"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1AED6941F70C",
|
||||||
|
"checksum": "9a6c683ea2b9fc727c67dfa6e70c39464aa1cfd2b9c9d5a28b20289bb987c759"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1AEE15CFFC26",
|
||||||
|
"checksum": "fad9cb3115c24b6e12f1613197011e094b7baa3df0052825afaa0f9a327b5589"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD1AED7B8C4B5C",
|
||||||
|
"checksum": "d06bafaac0099e70753264f0c7c32566740735e89044efda01027d38dc8edc58"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.9.85": {
|
||||||
|
"previous_stable_version": "0.9.84",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD0E6D31D7F900",
|
||||||
|
"checksum": "1b0934dd04e0c06c8249c6cc394e2685367c4a9712e6da2d0f7ab5ae13fa0c89"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0E6D83BC9749",
|
||||||
|
"checksum": "24977b2d3a42ad6517b8ac0b748ec04269670740ac0ab29fcad881cfc231e60f"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0E6D5E7C4778",
|
||||||
|
"checksum": "c4d987bbcaec5ba5ffe4975b88de8da8051e54f1f33c962210b571dcec56e257"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0E6DC747F66F",
|
||||||
|
"checksum": "53e762019966805a57d61059ccf56f66e42ebfe9212c037e3dfbd3bde2e4ca32"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD0E6D451472B2",
|
||||||
|
"checksum": "ef89e6af390dcccce98ffd8da08380912fa036325d0aefea4dee89b771195030"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.9.84": {
|
||||||
|
"previous_stable_version": "0.9.83",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD05D0FD9A94E8",
|
||||||
|
"checksum": "b83e4ea328b527b472ff20d0e42d5b57a795efc2dcaed277e827961a2098eaba"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD05D10B4107F4",
|
||||||
|
"checksum": "d226756196eb4e380ba5f3f342589232d167af87c5c5d8e8d857c789927ed878"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD05D0CC9A227B",
|
||||||
|
"checksum": "8f77b62f85ebc1100ac27a66b7e3d62f20f138401bfe83de2164908ce170c901"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD05D1793D9794",
|
||||||
|
"checksum": "1da3e1db0493baa81a957078d3fafea79238ccfd3d43c0eef70b5ad09df51a8f"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD05D0D812BD49",
|
||||||
|
"checksum": "12f8b320b66d60fe531793912fcb16c91fcf58ed3f4a2e6b863777558b2dfb65"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.9.83": {
|
||||||
|
"previous_stable_version": "0.9.82",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD05C75DC4381C",
|
||||||
|
"checksum": "7ed56b34502b8d32714d6d2b68fd8ff6043be7a1a7bb456b8c4cc0b3f156dea4"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD05C7827D4BCB",
|
||||||
|
"checksum": "d781624777a96b5356867d5d1bcc2809049711dd44b64d8cd50899cd1ecbd2af"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD05C7840F1F5D",
|
||||||
|
"checksum": "b4bc7b59bff480ca8ee598ef232622066a5c8141f7a86c98e59496c80d2515c9"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD05C7F8E76944",
|
||||||
|
"checksum": "cb46f150337e91b934a5f0b62a3b0d669b8c9c1e0557d33747b2857d4f1a777a"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD05C75DDE0B9A",
|
||||||
|
"checksum": "c3e60cefc775777141aec51e3d5316b4d91446c278b9dad66ca6f66c8ca2fb13"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.9.82": {
|
"0.9.82": {
|
||||||
"previous_stable_version": "0.9.81",
|
"previous_stable_version": "0.9.81",
|
||||||
|
|||||||
10
manifests/cargo-rdme.json
generated
10
manifests/cargo-rdme.json
generated
@@ -21,6 +21,16 @@
|
|||||||
"1.4": {
|
"1.4": {
|
||||||
"version": "1.4.2"
|
"version": "1.4.2"
|
||||||
},
|
},
|
||||||
|
"1.4.8": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0D8E946C15EC",
|
||||||
|
"checksum": "b3a3e141b128d3dfffe3806d9c65a001818355a515111c946775d9e2c7112ab4"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0D8EC01F6FC1",
|
||||||
|
"checksum": "7ddb73756f780151c3616777faeea1c0c8b577614c1ea3dea4bbea13b5cdf4c0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"1.4.7": {
|
"1.4.7": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"etag": "0x8DCFF8CF498DEEF",
|
"etag": "0x8DCFF8CF498DEEF",
|
||||||
|
|||||||
44
manifests/cargo-semver-checks.json
generated
44
manifests/cargo-semver-checks.json
generated
@@ -16,7 +16,49 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-MIT)",
|
"license_markdown": "[Apache-2.0](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-MIT)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.36.0"
|
"version": "0.38.0"
|
||||||
|
},
|
||||||
|
"0.38": {
|
||||||
|
"version": "0.38.0"
|
||||||
|
},
|
||||||
|
"0.38.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1A0149CBAB8F",
|
||||||
|
"checksum": "ae1ac3676012d55144957f7323341622aab038e2788a43b3154580986bf5031d"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1A00FA2E83C2",
|
||||||
|
"checksum": "734e49922a8646444b5a52df1b279f37b22bc33b44653c6a7a882e61cca563b4"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1A0209F8BC7D",
|
||||||
|
"checksum": "5924c0d179cd9c4a65bad83c084edbb77abf73b6b080da5b4a7973555d1443ad"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1A011FCB1234",
|
||||||
|
"checksum": "bc8b915d202b673398a2e04fb0baf9e1d7b7a41a1b4cc94b30485c4cc932b72c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.37": {
|
||||||
|
"version": "0.37.0"
|
||||||
|
},
|
||||||
|
"0.37.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD14E07F8767A6",
|
||||||
|
"checksum": "cb6daf6a3977c7b36356236534716c7d2e9e63bcf78eecfe3df4142213029cfc"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD14E0814E4156",
|
||||||
|
"checksum": "03b79de998132617245ebd0111bcc767c192f0653834cb34645e62f27248b574"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD14E13C83131B",
|
||||||
|
"checksum": "e950eb36af127607fdc05844f116014dda0a2cbe2718a7f85f82fe7b79c2265e"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD14E092AB25AE",
|
||||||
|
"checksum": "e20ddfa756eff8eee87cc3b5efe9dd30b1640e0bff94be8808fc5020c921aad1"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.36": {
|
"0.36": {
|
||||||
"version": "0.36.0"
|
"version": "0.36.0"
|
||||||
|
|||||||
26
manifests/cargo-tarpaulin.json
generated
26
manifests/cargo-tarpaulin.json
generated
@@ -19,10 +19,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-MIT) OR [Apache-2.0](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-MIT) OR [Apache-2.0](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.31.2"
|
"version": "0.31.3"
|
||||||
},
|
},
|
||||||
"0.31": {
|
"0.31": {
|
||||||
"version": "0.31.2"
|
"version": "0.31.3"
|
||||||
|
},
|
||||||
|
"0.31.3": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD10875FE4FC45",
|
||||||
|
"checksum": "405326d49e27ae21e11cbf233d8b4f617c010e6c2b0a69700afb8080639c4e98"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1087002A0C02",
|
||||||
|
"checksum": "a906e48e91a1c550d77354e363c086ee424d25e9d426df10d0e2fbfbc83135b7"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD10877A55779E",
|
||||||
|
"checksum": "a1de43f98aa5ccff1bc277ec884fe9fd9d6a62a9c21b8fe2101674cfedaa1870"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD10873074ABA6",
|
||||||
|
"checksum": "dd7f030e29535cf461e4c039e41934f47db44fd5c669be599bd58340f5cced8f"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1086F4765747",
|
||||||
|
"checksum": "fe9d5557c3b5367738b0de441f6df5f29e547e67921fd888431b2324f68cad49"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.31.2": {
|
"0.31.2": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
30
manifests/cargo-udeps.json
generated
30
manifests/cargo-udeps.json
generated
@@ -32,10 +32,36 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
|
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.1.52"
|
"version": "0.1.53"
|
||||||
},
|
},
|
||||||
"0.1": {
|
"0.1": {
|
||||||
"version": "0.1.52"
|
"version": "0.1.53"
|
||||||
|
},
|
||||||
|
"0.1.53": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD114D5A5A8296",
|
||||||
|
"checksum": "e2c63bf95583a772160eca65192cd128964e1e52f9d5b4a2fd13dd15f76c6e54"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD114CF9424905",
|
||||||
|
"checksum": "06f44833a4194a7b833e60dda9d7b874c1298bb82d42e2bbbd3ee995fbac31ff"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD114DBAF20DB1",
|
||||||
|
"checksum": "83bfad645d73ae39260cc9db70796a7295bebf05958b727355c008db3ae642fd"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD114D575FB734",
|
||||||
|
"checksum": "d7b68b0f65afbb708870549bf5b8688b15d24c9804f4d54650ec91c92e841208"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD114CFAC8B8CC",
|
||||||
|
"checksum": "2f260756a44e603d72e2e68fcc41f0337ca284218b7efbe3862f5c73ba1a15fc"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD114DBBC22F55",
|
||||||
|
"checksum": "714b4b76b0dd950c3b42a472d2b11de744118636bbde46f8587aed3dcab20809"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.1.52": {
|
"0.1.52": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
70
manifests/cargo-zigbuild.json
generated
70
manifests/cargo-zigbuild.json
generated
@@ -19,10 +19,76 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/rust-cross/cargo-zigbuild/blob/main/LICENSE)",
|
"license_markdown": "[MIT](https://github.com/rust-cross/cargo-zigbuild/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.19.4"
|
"version": "0.19.7"
|
||||||
},
|
},
|
||||||
"0.19": {
|
"0.19": {
|
||||||
"version": "0.19.4"
|
"version": "0.19.7"
|
||||||
|
},
|
||||||
|
"0.19.7": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1DD6FF709E0F",
|
||||||
|
"checksum": "f0888b50dfaa353885a6eeb1979f3ad42a153b34e388d4e6c944dbed5940d1c5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1DD6E31A46A4",
|
||||||
|
"checksum": "aa2de5926d125e0248dd7181d894d3a0d5873349da5ddacc32ed5380de49d07c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD1DD6D01D2225",
|
||||||
|
"checksum": "64c0c8c8387f3ac3c5f610cd2f973eca50ca351c03bb4c386fdc981f09aa97a6"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1DD91C5DB4A4",
|
||||||
|
"checksum": "d57225a8e3574c0cf4bb1e7ade0acdfd8ea37a70803c8f17b1087c69246c0b5d"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD1DD715E23D42",
|
||||||
|
"checksum": "2997e25a9d591f2c1de275c19fa0e50bf536a6129f83147530a2df4b816d39e1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.19.6": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1D6C197AF968",
|
||||||
|
"checksum": "4e96fa4c6949f769b1d9765534eeeecc1cff1c68a2f14c2133ce725aaf2ab25b"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1D6C1F3C234E",
|
||||||
|
"checksum": "96c62f249de011c1171bfec8e8f0167a8ea6fd2acc235ee0b159864be1f00fc0"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD1D6BF3997E3D",
|
||||||
|
"checksum": "7f1e6ae0163a604d18d39eeebd1ddf0ff1227a94831c516210c7d0b77efd5c0c"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1D6D66BE92B9",
|
||||||
|
"checksum": "1a6ca0ba81d2ebfef6ca3b77c37924c87e994ba20acbf479f285b55d82c2bc60"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD1D6C3E89704C",
|
||||||
|
"checksum": "8217239a1bbd6ee937da66e87d2aaacbb5afd10d275d72f5e54a481f67245332"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.19.5": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD10EB499E98B9",
|
||||||
|
"checksum": "3d4baf2a9067e13577a31623f9fa628c6415caea188591dca48aa378783e3913"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD10EAE6228CF5",
|
||||||
|
"checksum": "589254e208526d901d2193f4470a14241ad636a35df60bfeb35058e93e2e0d1c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD10EA7C976517",
|
||||||
|
"checksum": "0715fcfb3881a51e2e663f176c4ba6ba8c3f9a7a346668cc5b957d237ad4d401"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD10EC07B2E36C",
|
||||||
|
"checksum": "ecc421030d2db57d4e4bd2a29904243c9f59920e2634a0d2e9480ea4dedb00e5"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD10EAF12FE9A3",
|
||||||
|
"checksum": "abd4b87c1b22ed02df55b166fc86ab5269a16c3186f99786c4663fb64dfeea7e"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.19.4": {
|
"0.19.4": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
26
manifests/dprint.json
generated
26
manifests/dprint.json
generated
@@ -25,10 +25,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/dprint/dprint/blob/main/LICENSE)",
|
"license_markdown": "[MIT](https://github.com/dprint/dprint/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.47.5"
|
"version": "0.47.6"
|
||||||
},
|
},
|
||||||
"0.47": {
|
"0.47": {
|
||||||
"version": "0.47.5"
|
"version": "0.47.6"
|
||||||
|
},
|
||||||
|
"0.47.6": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1261B07EEDD9",
|
||||||
|
"checksum": "ab0cd8c86d224b51371bb0a5c50418376b153a643d024022977e4d72cad529e6"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1261B086AD4F",
|
||||||
|
"checksum": "b54950d447e0d17fcc2732bf99928503deb39b5b764e5b33995449bf6059c857"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1261B0758292",
|
||||||
|
"checksum": "0c9abe671652b8da61227b92b0bc038b1e938367fa3d7a9fa3ba523d515d4a9a"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD1261B07FB056",
|
||||||
|
"checksum": "221aaecc5e71d73591b226377064a33b4d15a5aae6788ef11c99a4da540a095d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1261B07FD733",
|
||||||
|
"checksum": "4f33c24141a19638ab045fe5e95654ff0ef8db29949e145d28ea3cc5b088a042"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.47.5": {
|
"0.47.5": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
33
manifests/git-cliff.json
generated
33
manifests/git-cliff.json
generated
@@ -28,10 +28,39 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "2.6.1"
|
"version": "2.7.0"
|
||||||
},
|
},
|
||||||
"2": {
|
"2": {
|
||||||
"version": "2.6.1"
|
"version": "2.7.0"
|
||||||
|
},
|
||||||
|
"2.7": {
|
||||||
|
"version": "2.7.0"
|
||||||
|
},
|
||||||
|
"2.7.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0952B0DB39CC",
|
||||||
|
"checksum": "54360b4fb80d2a8e50c2a605517d7b6a435dd2a37db70579781a0598f45a3062"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0952630F624A",
|
||||||
|
"checksum": "0ef07ded47fd4a4f9a704341d10e9bc3daef7054bae49d20ce4c76cb4bd01092"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0953277A3FD1",
|
||||||
|
"checksum": "3afecbfb8b2a1145f6321fa6fc6bf0fabb8dff5dd7fa1bfa46bafa9f7484f47c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0952A53E4C8D",
|
||||||
|
"checksum": "64db75d63e8f43ea830836bc110bebc1d80a5fe86d0e9a700a7350eb748fe9f6"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD095260B5EEE0",
|
||||||
|
"checksum": "3c67edc958a8209c30c86de22a4aa0bac1a1d554481f647aa9a7fe304a3339ed"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD095334EDFA8D",
|
||||||
|
"checksum": "3020caa170c7c63517bfb16a9ae142b493bdd35903ccd4663509aa7e231aa7c0"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"2.6": {
|
"2.6": {
|
||||||
"version": "2.6.1"
|
"version": "2.6.1"
|
||||||
|
|||||||
33
manifests/hyperfine.json
generated
33
manifests/hyperfine.json
generated
@@ -16,14 +16,43 @@
|
|||||||
"aarch64_linux_gnu": {
|
"aarch64_linux_gnu": {
|
||||||
"url": "https://github.com/sharkdp/hyperfine/releases/download/v${version}/hyperfine-v${version}-aarch64-unknown-linux-gnu.tar.gz",
|
"url": "https://github.com/sharkdp/hyperfine/releases/download/v${version}/hyperfine-v${version}-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
"bin": "hyperfine-v${version}-aarch64-unknown-linux-gnu/hyperfine"
|
"bin": "hyperfine-v${version}-aarch64-unknown-linux-gnu/hyperfine"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/sharkdp/hyperfine/releases/download/v${version}/hyperfine-v${version}-aarch64-apple-darwin.tar.gz",
|
||||||
|
"bin": "hyperfine-v${version}-aarch64-apple-darwin/hyperfine"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.18.0"
|
"version": "1.19.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.18.0"
|
"version": "1.19.0"
|
||||||
|
},
|
||||||
|
"1.19": {
|
||||||
|
"version": "1.19.0"
|
||||||
|
},
|
||||||
|
"1.19.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD029A2506B538",
|
||||||
|
"checksum": "825287143f397774093539ca2458854ab3735c0e8a1aaf075c22edce7d261556"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD029A168794A5",
|
||||||
|
"checksum": "80ad420c0a9a5d090f6ca0ddc9305a139d57ba6b6e8e7adf22c800389baf3ab6"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD029A718B5FF6",
|
||||||
|
"checksum": "3e488eea6d930f54a43b1b2c8c01226286c7c01b5ba7211d7beb9029918a616c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD029A11BFB41C",
|
||||||
|
"checksum": "7f9c0522e1acf869e0558e085c43f2cea3e30e4f7a4b7bc3d5540cbdee7b4273"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD029A033B40F5",
|
||||||
|
"checksum": "502e7c7f99e7e1919321eaa23a4a694c34b1b92d99cbd773a4a2497e100e088f"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.18": {
|
"1.18": {
|
||||||
"version": "1.18.0"
|
"version": "1.18.0"
|
||||||
|
|||||||
54
manifests/just.json
generated
54
manifests/just.json
generated
@@ -19,10 +19,60 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.36.0"
|
"version": "1.38.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.36.0"
|
"version": "1.38.0"
|
||||||
|
},
|
||||||
|
"1.38": {
|
||||||
|
"version": "1.38.0"
|
||||||
|
},
|
||||||
|
"1.38.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1963ADF6A8AD",
|
||||||
|
"checksum": "c803e67fd7b0af01667bd537197bc3df319938eacf9e8d51a441c71d03035bb5"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1963A9BC11E0",
|
||||||
|
"checksum": "7b94bdbb1e7ecc9254c038de5e0b30b7bc133cc5c05cf30b6236df2c2ef80226"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1963E4CA0879",
|
||||||
|
"checksum": "c68947147e10a78467ffbfbb8d9ce6163eba515b9429b5b68f286e260b63bfd2"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD1963B9E35C0E",
|
||||||
|
"checksum": "efded3b062708c2bf55e7d7e7208f47ab70134a299e66e42d2759f67b421f9d3"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1963A57F33A9",
|
||||||
|
"checksum": "9f352a4bdd1ff91dc5bd1dafaaa2edc9e7c04a2eb64b1c18244578ae45ff116a"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.37": {
|
||||||
|
"version": "1.37.0"
|
||||||
|
},
|
||||||
|
"1.37.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD09AFEAC870E8",
|
||||||
|
"checksum": "9e301da1a46153b4c9adf9efe20d05361467b5591b1b3cf8880db59a1d019963"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD09AFF022729B",
|
||||||
|
"checksum": "be9b503be9c50a280b92431035adc20a64a84dd1889f97b4e2f2844c77650fc7"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD09B0518B8377",
|
||||||
|
"checksum": "fc62b5dc04e103de15e04caeeb0398d286129353ff24302dd5e4da1fbd7badac"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD09AFF2DC5D3D",
|
||||||
|
"checksum": "96a75ed35ef2cb227d921fa71cd8c8dfb5828ca197e2740ca8626546d393b04e"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD09AFE5108C4F",
|
||||||
|
"checksum": "613a7c96398fcccc2a5334a63bb525e865e74abee28d0df1869824a8c0c0dbeb"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.36": {
|
"1.36": {
|
||||||
"version": "1.36.0"
|
"version": "1.36.0"
|
||||||
|
|||||||
22
manifests/mdbook.json
generated
22
manifests/mdbook.json
generated
@@ -19,10 +19,28 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MPL-2.0](https://github.com/rust-lang/mdBook/blob/master/LICENSE)",
|
"license_markdown": "[MPL-2.0](https://github.com/rust-lang/mdBook/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.4.42"
|
"version": "0.4.43"
|
||||||
},
|
},
|
||||||
"0.4": {
|
"0.4": {
|
||||||
"version": "0.4.42"
|
"version": "0.4.43"
|
||||||
|
},
|
||||||
|
"0.4.43": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0D77E3D21BB6",
|
||||||
|
"checksum": "3058914071a6f22dbd1b8ea734a96d8e86489743ae0bc8d6bbd9e923f191b038"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0D77F4A24C97",
|
||||||
|
"checksum": "03cb822f7080a1fd6a687409281fe2cad745748120cdc8f5a68c736c831d01db"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0D781F32BDB6",
|
||||||
|
"checksum": "a8bbc1920e43dc88d2d10d0e3a271af863bb6f76545c6cdecc35dd1b30852a86"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0D77EB210014",
|
||||||
|
"checksum": "647d71951fc696adc8c499a4363bb1a21045a0c734818f077add8ec4477ad814"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.4.42": {
|
"0.4.42": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
61
manifests/protoc.json
generated
61
manifests/protoc.json
generated
@@ -3,10 +3,67 @@
|
|||||||
"template": null,
|
"template": null,
|
||||||
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "3.28.3"
|
"version": "3.29.1"
|
||||||
},
|
},
|
||||||
"3": {
|
"3": {
|
||||||
"version": "3.28.3"
|
"version": "3.29.1"
|
||||||
|
},
|
||||||
|
"3.29": {
|
||||||
|
"version": "3.29.1"
|
||||||
|
},
|
||||||
|
"3.29.1": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.1/protoc-29.1-linux-x86_64.zip",
|
||||||
|
"etag": "0x8DD1480BBF9D305",
|
||||||
|
"checksum": "00c83fe9722d85e96c81b941b29f17a744b33b4ce66e0f18009fd8937de22c60"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.1/protoc-29.1-osx-x86_64.zip",
|
||||||
|
"etag": "0x8DD1480BC5A98F7",
|
||||||
|
"checksum": "db02b4b86de4d4cced3ea9934347da28dc95e7f38863ffc4ce3cc26283028da6"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.1/protoc-29.1-win64.zip",
|
||||||
|
"etag": "0x8DD1480BC7E259D",
|
||||||
|
"checksum": "7ea48225857ffc1224588c335c2b1af9d78a18af9d57c0528cca3193e336e9ce"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.1/protoc-29.1-linux-aarch_64.zip",
|
||||||
|
"etag": "0x8DD1480BBA1B5ED",
|
||||||
|
"checksum": "1f74a3f3355de7c0666bc125611c13532c2598f853521d0d3e621a5b09f24799"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.1/protoc-29.1-osx-aarch_64.zip",
|
||||||
|
"etag": "0x8DD1480BC10012F",
|
||||||
|
"checksum": "b8fd5976926198a7c4ea5c6eb4bf78959d5faed27bfc618254caa1043f770445"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"3.29.0": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.0/protoc-29.0-linux-x86_64.zip",
|
||||||
|
"etag": "0x8DD0F12DA2E2AC7",
|
||||||
|
"checksum": "3c51065af3b9a606d9e18a1bf628143734ff4b9e69725d6459857430ba7a78df"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.0/protoc-29.0-osx-x86_64.zip",
|
||||||
|
"etag": "0x8DD0F12DA708E6E",
|
||||||
|
"checksum": "e7a1cffc82e21daa67833011449c70ddff1eba3b115934387e6e8141efab092f"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.0/protoc-29.0-win64.zip",
|
||||||
|
"etag": "0x8DD0F12DA99932D",
|
||||||
|
"checksum": "d03b9219858b8a4ca88063b78bf0a5cde73b51808b930c4b66f06e8482c3abe6"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.0/protoc-29.0-linux-aarch_64.zip",
|
||||||
|
"etag": "0x8DD0F12D9CACFB2",
|
||||||
|
"checksum": "305f1be5ae7b2f39451870b312b45c1e0ba269901c83ba16d85f9f9d1441b348"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v29.0/protoc-29.0-osx-aarch_64.zip",
|
||||||
|
"etag": "0x8DD0F12DA3B893D",
|
||||||
|
"checksum": "b2b59f03b030c8a748623d682a8b5bc9cc099e4bcfd06b8964ce89ec065b3103"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"3.28": {
|
"3.28": {
|
||||||
"version": "3.28.3"
|
"version": "3.28.3"
|
||||||
|
|||||||
32
manifests/rclone.json
generated
32
manifests/rclone.json
generated
@@ -28,13 +28,39 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.68.1"
|
"version": "1.68.2"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.68.1"
|
"version": "1.68.2"
|
||||||
},
|
},
|
||||||
"1.68": {
|
"1.68": {
|
||||||
"version": "1.68.1"
|
"version": "1.68.2"
|
||||||
|
},
|
||||||
|
"1.68.2": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD057C3F2AF2A5",
|
||||||
|
"checksum": "0e6fa18051e67fc600d803a2dcb10ddedb092247fc6eee61be97f64ec080a13c"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD057CFB984BD5",
|
||||||
|
"checksum": "cdc685e16abbf35b6f47c95b2a5b4ad73a73921ff6842e5f4136c8b461756188"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD057D34187E1A",
|
||||||
|
"checksum": "812bf76cc02c04cf6327f3683f3d5a88e47d36c39db84c1a745777496be7d993"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD057C544627A4",
|
||||||
|
"checksum": "c6e9d4cf9c88b279f6ad80cd5675daebc068e404890fa7e191412c1bc7a4ac5f"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD057D0613D1D3",
|
||||||
|
"checksum": "323f387b32bcf9ddfc3874f01879a0b2689dbd91309beb8c3a4410db04d0c41f"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD057D3B291B15",
|
||||||
|
"checksum": "cbc6584266cf62bb9f4df912cb00d566c1cbc50ce2748f5e433f1937209e807e"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.68.1": {
|
"1.68.1": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
122
manifests/release-plz.json
generated
122
manifests/release-plz.json
generated
@@ -2,30 +2,134 @@
|
|||||||
"rust_crate": "release-plz",
|
"rust_crate": "release-plz",
|
||||||
"template": {
|
"template": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"url": "https://github.com/MarcoIeni/release-plz/releases/download/release-plz-v${version}/release-plz-x86_64-unknown-linux-musl.tar.gz"
|
"url": "https://github.com/release-plz/release-plz/releases/download/release-plz-v${version}/release-plz-x86_64-unknown-linux-musl.tar.gz"
|
||||||
},
|
},
|
||||||
"x86_64_macos": {
|
"x86_64_macos": {
|
||||||
"url": "https://github.com/MarcoIeni/release-plz/releases/download/release-plz-v${version}/release-plz-x86_64-apple-darwin.tar.gz"
|
"url": "https://github.com/release-plz/release-plz/releases/download/release-plz-v${version}/release-plz-x86_64-apple-darwin.tar.gz"
|
||||||
},
|
},
|
||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"url": "https://github.com/MarcoIeni/release-plz/releases/download/release-plz-v${version}/release-plz-x86_64-pc-windows-msvc.tar.gz"
|
"url": "https://github.com/release-plz/release-plz/releases/download/release-plz-v${version}/release-plz-x86_64-pc-windows-msvc.tar.gz"
|
||||||
},
|
},
|
||||||
"aarch64_linux_musl": {
|
"aarch64_linux_musl": {
|
||||||
"url": "https://github.com/MarcoIeni/release-plz/releases/download/release-plz-v${version}/release-plz-aarch64-unknown-linux-musl.tar.gz"
|
"url": "https://github.com/release-plz/release-plz/releases/download/release-plz-v${version}/release-plz-aarch64-unknown-linux-musl.tar.gz"
|
||||||
},
|
},
|
||||||
"aarch64_macos": {
|
"aarch64_macos": {
|
||||||
"url": "https://github.com/MarcoIeni/release-plz/releases/download/release-plz-v${version}/release-plz-aarch64-apple-darwin.tar.gz"
|
"url": "https://github.com/release-plz/release-plz/releases/download/release-plz-v${version}/release-plz-aarch64-apple-darwin.tar.gz"
|
||||||
},
|
},
|
||||||
"aarch64_windows": {
|
"aarch64_windows": {
|
||||||
"url": "https://github.com/MarcoIeni/release-plz/releases/download/release-plz-v${version}/release-plz-aarch64-pc-windows-msvc.tar.gz"
|
"url": "https://github.com/release-plz/release-plz/releases/download/release-plz-v${version}/release-plz-aarch64-pc-windows-msvc.tar.gz"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.3.106"
|
"version": "0.3.111"
|
||||||
},
|
},
|
||||||
"0.3": {
|
"0.3": {
|
||||||
"version": "0.3.106"
|
"version": "0.3.111"
|
||||||
|
},
|
||||||
|
"0.3.111": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD16E25FF82F97",
|
||||||
|
"checksum": "cbde879d2501f69edfb59ef4d825d836bb3cb1243ccb8c62033892856f1c1a9d"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD16E37D6E77D3",
|
||||||
|
"checksum": "c50de53683cc44d2a543b68e64fb3cc790b452f5b2dd7fab1b9350abf8743076"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD16E32C422DB8",
|
||||||
|
"checksum": "e04f4999d77ac4f54a9490fcbcf3b621bc9d530a2d50c75b6428df639bae38f4"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD16E26BB862F4",
|
||||||
|
"checksum": "f9adf28627bafbabce882f3ea0e00a9e6216f279bc58a3b436553c46bd2a1e0f"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD16E2A34C8E4D",
|
||||||
|
"checksum": "d84b3a96b7f99320fbee4312e3a91522e0e6c9a951ff89903105212865b06bd7"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD16E322A0D3F3",
|
||||||
|
"checksum": "c9e5ddc6989d5b4814f25399254ffb772a0d9c02ab0d00538d5bb11aa247e40c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.3.110": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0ACB6D1E9B4D",
|
||||||
|
"checksum": "49a7f792e588cb611c57ee885d70609fadb3b997b417a39801b17085c7cdd236"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0ACBCC9197C7",
|
||||||
|
"checksum": "0cff9810899966a63accaa0157f6bc7ebf1b9e6d647b97a3b9ac11004427c62e"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0ACC4A969A53",
|
||||||
|
"checksum": "af06ad3abfffe184b308ee776865ce8cf757e18ce162ae3edf3593cfe74bc312"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0ACB7139492D",
|
||||||
|
"checksum": "9febf7053a5793b1068cb575886f3783bd2824798f636ba001b51072a48bbe57"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0ACBEA3D2654",
|
||||||
|
"checksum": "cd2a0cb2e69ca77c9e73c5f7e81b64fba6a9d3d0aabeedb1e0398a7a068ac1c7"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD0ACC07AA43C8",
|
||||||
|
"checksum": "914cb659a816c87bdc6b123adab16ffa698bf1727a63ea3f95d3600d878b42a3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.3.108": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0428A19F2ED5",
|
||||||
|
"checksum": "568c73281721459c611d0e4393e4d297da91153e0ebd34826ba3a5db01dddcc5"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD042A99EA50B1",
|
||||||
|
"checksum": "07cbbf539058e7f8fa3b8401346c7a5e3a0a2093683bbea13e06dcdcffb902e7"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD04298DF03ECE",
|
||||||
|
"checksum": "2b7a958cd7f4c43d04b7afd3bb407533ba0def292b5d81e99d7ecc53034f0f40"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0428AABEA526",
|
||||||
|
"checksum": "73e89d186c5d485cb5eb0b9579bf185b8f1f99562be4153dca64f767e9575f3d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD042A1409C977",
|
||||||
|
"checksum": "44d92647d7aeed0d24ed03d8193cb598378f7e8a77b4e760885232d4586613e7"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD0429A68C0ECC",
|
||||||
|
"checksum": "b403abfc0725994495a7689996f5f106d9c52407d7e2ab3fcd066f7dfb3c70c0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.3.107": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCFFDABE39EB33",
|
||||||
|
"checksum": "c04c365fc7bbff63c5ad48afed7922b2c164643795b019caf294543135c72dc3"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCFFDAF34A4A0C",
|
||||||
|
"checksum": "0dcfa8b2cc11c0bd5faee771940a24b2f828cde28571b64c579123a757db156e"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCFFDB847E30C1",
|
||||||
|
"checksum": "6f5055da7e320ba0b4ca086dc34187c98e4c2c6b05e3ca308a06fbdb631810b3"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCFFDAC2A19EB3",
|
||||||
|
"checksum": "44551202b60551ed1363abcb285676fc03864bc47a71a5fdfbc48a093aee5976"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCFFDB34F4FABE",
|
||||||
|
"checksum": "1bfa1d07c8b2a1a744b03f0adc367e6b34066604aa0c10f51fd00afd4cdfb3dc"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCFFDBACB83D67",
|
||||||
|
"checksum": "484767e3677e0b6c1735b01fcdfd3834d549688b8f8930e0c0d6dee1e0dbb7d6"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.3.106": {
|
"0.3.106": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
27
manifests/sccache.json
generated
27
manifests/sccache.json
generated
@@ -24,7 +24,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.8.2"
|
"version": "0.9.0"
|
||||||
|
},
|
||||||
|
"0.9": {
|
||||||
|
"version": "0.9.0"
|
||||||
|
},
|
||||||
|
"0.9.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD189531306ABE",
|
||||||
|
"checksum": "f29522f9aa70aa929b7e76b6d4a1286196b17668ea753e5687899a8f7e4b9d3e"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1895301369F3",
|
||||||
|
"checksum": "0ba04fccefe2128784ce765c2bcd9765eb06e472c94dd62cc9d6c8ae69d7200f"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1895309AC676",
|
||||||
|
"checksum": "35fe3b6348a4a5e693a9c3fff72721599b81a836708cfd943537a83f5434efd9"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD18952E145A5D",
|
||||||
|
"checksum": "d0122fbeda107eff00a6401d6e3085fd1e361813821a05bcd224fc1d7071ecdf"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD18952CD41AB6",
|
||||||
|
"checksum": "f75b5b3d6046cac60a9eef362d86e6eeebdb4cc3c5dfd2e483f14f03ce4b94cf"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.8": {
|
"0.8": {
|
||||||
"version": "0.8.2"
|
"version": "0.8.2"
|
||||||
|
|||||||
76
manifests/syft.json
generated
76
manifests/syft.json
generated
@@ -24,10 +24,82 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.16.0"
|
"version": "1.18.1"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.16.0"
|
"version": "1.18.1"
|
||||||
|
},
|
||||||
|
"1.18": {
|
||||||
|
"version": "1.18.1"
|
||||||
|
},
|
||||||
|
"1.18.1": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1BA6C0E875DE",
|
||||||
|
"checksum": "066c251652221e4d44fcc4d115ce3df33a91769da38c830a8533199db2f65aab"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1BA6C1890A1E",
|
||||||
|
"checksum": "223f5a97653e0bb0a96580a04328d41d515ee742bfbdd917f0583dc43e66f423"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1BA6C192EA0F",
|
||||||
|
"checksum": "85476686b4eaaf4175a16c1cbef391c5396e06cdbef171ae8b7b2f7117e5b038"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD1BA6C0EBF461",
|
||||||
|
"checksum": "cd228306e5cb0654baecb454f76611606b84899d27fa9ceb7da4df46b94fe84e"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1BA6C19778D6",
|
||||||
|
"checksum": "bc5ad238a7cc60f19459b6f358079847bff5f8e520c8239706730f3fc5c5edd5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.18.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1895CCE03E62",
|
||||||
|
"checksum": "0b6fd1e0dd5b00b19585e5cde8e1c1f4ef60dc8fba8b41fab55f00852a2fbb8d"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1895CD9F82FB",
|
||||||
|
"checksum": "9dacc76d994c049156b0e77f8d301212eea208b7365c88cd65b2e477d84ce666"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1895CDA4389C",
|
||||||
|
"checksum": "e7c5face12a70cd1a480da5ba3092e5ab4ac49cc9467fd3f056167c58b929a1d"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD1895CCDE1DDA",
|
||||||
|
"checksum": "24af468c55af7f52a90e6345e695dced1cb4311878578248a1ca90a332cda7df"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1895CD95553E",
|
||||||
|
"checksum": "09215199eef24590048185835f8cbea15dd45728310cb1e2c26bc89451ebc28c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.17": {
|
||||||
|
"version": "1.17.0"
|
||||||
|
},
|
||||||
|
"1.17.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0A3B49E31597",
|
||||||
|
"checksum": "3485e831c21fd80b41fa3fc1f72e10367989b2d1aee082d642b5b0e658a02b44"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0A3B4AA1BE3A",
|
||||||
|
"checksum": "81fb22678eba3380c28e0f425e0e7ff0a41ba57a8e1e98825ad92a7fa5698c78"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0A3B4AA0ADEE",
|
||||||
|
"checksum": "a533ce601ed66a2be3b3418fe914baa1cf946e80e47dfbd71a58d8f7894c0a0e"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0A3B49EC80DD",
|
||||||
|
"checksum": "7f3e0cf3f8bc5dc320e56b0e133c854c8000d5f473bd61d247341a1b7bfa27ea"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0A3B4A945FC7",
|
||||||
|
"checksum": "2cb79ecdc62d453912e299e7b814107700250ffeffdb3a9ea5dc9099af7b6dba"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.16": {
|
"1.16": {
|
||||||
"version": "1.16.0"
|
"version": "1.16.0"
|
||||||
|
|||||||
99
manifests/typos.json
generated
99
manifests/typos.json
generated
@@ -16,13 +16,106 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.27.2"
|
"version": "1.28.3"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.27.2"
|
"version": "1.28.3"
|
||||||
|
},
|
||||||
|
"1.28": {
|
||||||
|
"version": "1.28.3"
|
||||||
|
},
|
||||||
|
"1.28.3": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1AEF2258674F",
|
||||||
|
"checksum": "5aadc7aa163b99f040bcce246172e8c1dda0b6139b2d67d00894b3884233bbfb"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1AEF107F8D7E",
|
||||||
|
"checksum": "3dc98f8dea4ddd592351dc7d05a81e419e21b96ef9dad99143248fd713a42d3a"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1AEF779C19E0",
|
||||||
|
"checksum": "f24e3460b132c7a85bcc8c2f25521aadfb9d6bd5faa312446d0fa86d40cd5d05"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1AEF0E048688",
|
||||||
|
"checksum": "1f98d72798cf6e019379579f376a43beca5becc525a9902cf8cb05101c25f285"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.28.2": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD12EA634C9F87",
|
||||||
|
"checksum": "d06f2be394a828e2b9e429c6053b943974e2a7134ec8cbac3ad1f65c18c75970"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD12EA7D3ED94E",
|
||||||
|
"checksum": "c560fa1c63a78ba494a4a9b5618ee16fbbb4a0a9a442cf2e7a668d84627b0c74"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD12EAACE9FFF7",
|
||||||
|
"checksum": "c1323d79bbe632d343c1a99cc6fac4c9f89556318d98a7700cee8db6d7aad83b"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD12EA8380DF76",
|
||||||
|
"checksum": "69f1f16509fba0c1c87fe3af03a663db18e9a5ead16595f6f278ccd129a2631d"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.28.1": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0E3E78CB5699",
|
||||||
|
"checksum": "621e1fa08354f987334c68d915614220916ddd28205d2cefc8b9caeabad21997"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0E3E7B3814E1",
|
||||||
|
"checksum": "0c5d792f13cdb28312ad7a01806ca1bf7dfff1b69376505a4e9b92140578e648"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0E3EAFAD028C",
|
||||||
|
"checksum": "28941cddb150a929e9ab7c21bf505fad4b24b07be92c143bf0bd2e49b18e8f94"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0E3E7BC8B581",
|
||||||
|
"checksum": "4e386811d942338364123fe7736e8ded3fc566eb41b72fc3c42f090afb430825"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.28.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0D95953E85EE",
|
||||||
|
"checksum": "d79367a9ebcb96e0f30390b449cafdadfd020148799697883247e55bcc63aca5"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0D95D166A948",
|
||||||
|
"checksum": "81cc96177058b761d3509884ebcbf81a51cf78df342a90f54fa4f65a61e5ad8b"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD0D95CC33FE95",
|
||||||
|
"checksum": "24238988d89295a8e1860d88bf4ebb69f29d33638954ff6c356b077622f80132"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0D95B8737D3B",
|
||||||
|
"checksum": "25033e6eafcb1b2137e77b09e1a848c298ba52dd621b33f1f074711abcfd077d"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.27": {
|
"1.27": {
|
||||||
"version": "1.27.2"
|
"version": "1.27.3"
|
||||||
|
},
|
||||||
|
"1.27.3": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD000722C414AA",
|
||||||
|
"checksum": "d1020ef4c89a7e9d4f70292b4cf88e4c28de44c9da881cfb6e3aec153a61cced"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0007309510F6",
|
||||||
|
"checksum": "3afdf4a7101e7b074a364d6eeb4d4ec2f9ec567002f540d774e1cfe12849a8b5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD00075F9477C4",
|
||||||
|
"checksum": "b9b1f42a748c8cbab07d9ca9346f50ec507d2efeb97245af921edd642709b274"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0006FC7BC3B8",
|
||||||
|
"checksum": "ced08f770df26787c351363aad59d5fd6027b7a45335c2fddfcf82615d88e607"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.27.2": {
|
"1.27.2": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
92
manifests/wasm-bindgen.json
generated
92
manifests/wasm-bindgen.json
generated
@@ -44,10 +44,98 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/rustwasm/wasm-bindgen/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/rustwasm/wasm-bindgen/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/rustwasm/wasm-bindgen/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/rustwasm/wasm-bindgen/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.2.95"
|
"version": "0.2.99"
|
||||||
},
|
},
|
||||||
"0.2": {
|
"0.2": {
|
||||||
"version": "0.2.95"
|
"version": "0.2.99"
|
||||||
|
},
|
||||||
|
"0.2.99": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD165C78EB51DF",
|
||||||
|
"checksum": "0ae33d77b6f4fe09b294fa245764dbb05a3a1aeefeb7696cb365760d3abbdc51"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD165C78E40710",
|
||||||
|
"checksum": "e3b069947a4fabac41cc4e0d9db30823b9c7430fb8604c8e0d996430b30ebe36"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD165C78D98B91",
|
||||||
|
"checksum": "693603c94c9fb23867cb4ae7e1c1df26f0699cf3c6203192ed406256d95bc044"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD165C78DB375A",
|
||||||
|
"checksum": "7e1654f08020abcc9bc131f15159d7be68579088c02f1e4486e09a9de3d49e54"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD165C78DC6E7C",
|
||||||
|
"checksum": "e80d43ef00d0f94da07f77f42109bb10b86eb9a2a8c3dceae279c4655e77d99a"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.2.98": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1652CA2153BA",
|
||||||
|
"checksum": "2e0d738c4ac0189d9d16c9872e6450cb187f3c91b06a5d3d86911711b6039c2b"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1652CA22B1BA",
|
||||||
|
"checksum": "d55cab583cfbfa6bbb04e580c61061ee4060f04a2f36713fe1c02f0875350240"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1652CA28C568",
|
||||||
|
"checksum": "593a0dfaf84f44ca2bc9bd627097871655150c6498ababa6dc99facb32343536"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD1652CA28EC50",
|
||||||
|
"checksum": "15831c110eadddb58401bdbccce99bb7543c80dfad1df9e195f14d67b71c3b38"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1652CAA4BD10",
|
||||||
|
"checksum": "defb0d78222de67b937ea6c99cd434f0dd2ce84dbde38043d2b7b56115f975a3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.2.97": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD11196AD36110",
|
||||||
|
"checksum": "673526c9068e9bb077aead57da8343fc6d9c352b47ab6143d0b22d1756645a5a"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD11196AC7D54F",
|
||||||
|
"checksum": "f7d4b442775b73901939f771a9cba10a146d3cfb2a57162b00232d742c5febbf"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD11196AC95A39",
|
||||||
|
"checksum": "821d9c05123c136eb05aab269fd53ff3a6b9458e93f76e5ade43ca4815f6de1c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD11196AD5CF56",
|
||||||
|
"checksum": "b2a52ac554e13d731a5d3ff93e6b3d1e080f96d6984da4132b461bea62bb6914"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD11196AD90003",
|
||||||
|
"checksum": "2219ad5dbb6277ebf55bcf5a9e62de203ca875d4b743d1c10160e801a3dcaf69"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.2.96": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD1096BF3F0AA9",
|
||||||
|
"checksum": "02c8b95c9fa05d2d8352cfecc8ad4d1c6fbe360b1c9675c61c8980e44d6b4eee"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD1096BF3AF095",
|
||||||
|
"checksum": "7176d206acaaee0461f40ca766418dc8bbdf5f8f025c2befcee92bb56d19db19"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD1096BF42D6F4",
|
||||||
|
"checksum": "c80991f93427a46d43fc540a6e1ecf318f563f2e2d9b28bd57322997fbb16bc4"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD1096BF4041CE",
|
||||||
|
"checksum": "53e9990a3fdfc9d2f146a2006c09a312d7f9445a6b838c61db9fc037f9cbb840"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD1096BF426248",
|
||||||
|
"checksum": "56a40291db5ec946be91ca4dd9ecd3b0f35e090a251359407e219d12c2083f5c"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.2.95": {
|
"0.2.95": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
34
manifests/wasmtime.json
generated
34
manifests/wasmtime.json
generated
@@ -28,7 +28,39 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "26.0.1"
|
"version": "27.0.0"
|
||||||
|
},
|
||||||
|
"27": {
|
||||||
|
"version": "27.0.0"
|
||||||
|
},
|
||||||
|
"27.0": {
|
||||||
|
"version": "27.0.0"
|
||||||
|
},
|
||||||
|
"27.0.0": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD097F1EE2EA9F",
|
||||||
|
"checksum": "74678f6ec49d8b858ca5181d5492b967245f6c072b5763ea14a75eee1ad3c2d7"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD097F20045326",
|
||||||
|
"checksum": "286a2bd9dec59ade83ee9440f2034843309e00dc5895b135bf5fcf182733a486"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD097F24CA1174",
|
||||||
|
"checksum": "fc75d3cae018ab433387d72487b2d111c4614c0442ab7941b67ad49ce3631b60"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD097F147C8338",
|
||||||
|
"checksum": "b4b5a47d4856e508a20d6ba6aeb32444fdaaa13771f1794b19e7f56fa6ef8d3a"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD097F15BFF367",
|
||||||
|
"checksum": "c908ea6dd7638f5d2bba057a51f13e6c90bbe28105704a7d6691438bc95491a3"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD097F17166118",
|
||||||
|
"checksum": "a13d88ada8ba76129305f6d162d87598279718bc10f385ccce23533212f76fdd"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"26": {
|
"26": {
|
||||||
"version": "26.0.1"
|
"version": "26.0.1"
|
||||||
|
|||||||
17
tools/codegen/base/cargo-auditable.json
Normal file
17
tools/codegen/base/cargo-auditable.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"repository": "https://github.com/rust-secure-code/cargo-auditable",
|
||||||
|
"license_markdown": "[Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-MIT)",
|
||||||
|
"tag_prefix": "v",
|
||||||
|
"rust_crate": "${package}",
|
||||||
|
"asset_name": "${package}-${rust_target}.tar.xz",
|
||||||
|
"bin": "${package}-${rust_target}/${package}${exe}",
|
||||||
|
"platform": {
|
||||||
|
"x86_64_linux_musl": {},
|
||||||
|
"x86_64_macos": {},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"asset_name": "${package}-${rust_target}.zip",
|
||||||
|
"bin": "${package}${exe}"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
"repository": "https://github.com/orium/cargo-rdme",
|
"repository": "https://github.com/orium/cargo-rdme",
|
||||||
"tag_prefix": "v",
|
"tag_prefix": "v",
|
||||||
"rust_crate": "${package}",
|
"rust_crate": "${package}",
|
||||||
"broken": ["1.4.3", "1.4.4", "1.4.5", "1.4.6", "1.4.7"],
|
"broken": ["1.4.3", "1.4.4", "1.4.5", "1.4.6", "1.4.7", "1.4.8"],
|
||||||
"platform": {
|
"platform": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"asset_name": "${package}_v${version}_${rust_target}.tar.bz2"
|
"asset_name": "${package}_v${version}_${rust_target}.tar.bz2"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"asset_name": "${package}-v${version}-${rust_target}.zip"
|
"asset_name": "${package}-v${version}-${rust_target}.zip"
|
||||||
},
|
},
|
||||||
"aarch64_linux_gnu": {}
|
"aarch64_linux_gnu": {},
|
||||||
|
"aarch64_macos": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"repository": "https://github.com/MarcoIeni/release-plz",
|
"repository": "https://github.com/release-plz/release-plz",
|
||||||
"website": "https://release-plz.ieni.dev/",
|
"website": "https://release-plz.dev/",
|
||||||
"tag_prefix": "release-plz-v",
|
"tag_prefix": "release-plz-v",
|
||||||
"rust_crate": "${package}",
|
"rust_crate": "${package}",
|
||||||
"asset_name": "${package}-${rust_target}.tar.gz",
|
"asset_name": "${package}-${rust_target}.tar.gz",
|
||||||
|
|||||||
@@ -311,22 +311,22 @@ impl StringOrArray {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// GitHub Actions Runner supports Linux (x86_64, aarch64, arm), Windows (x86_64, aarch64),
|
/// GitHub Actions Runner supports Linux (x86_64, AArch64, Arm), Windows (x86_64, AArch64),
|
||||||
/// and macOS (x86_64, aarch64).
|
/// and macOS (x86_64, AArch64).
|
||||||
/// https://github.com/actions/runner/blob/v2.315.0/.github/workflows/build.yml#L21
|
/// https://github.com/actions/runner/blob/v2.321.0/.github/workflows/build.yml#L21
|
||||||
/// https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners#supported-architectures-and-operating-systems-for-self-hosted-runners
|
/// https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners#supported-architectures-and-operating-systems-for-self-hosted-runners
|
||||||
///
|
///
|
||||||
/// Note:
|
/// Note:
|
||||||
/// - Static-linked binaries compiled for linux-musl will also work on linux-gnu systems and are
|
/// - Static-linked binaries compiled for linux-musl will also work on linux-gnu systems and are
|
||||||
/// usually preferred over linux-gnu binaries because they can avoid glibc version issues.
|
/// usually preferred over linux-gnu binaries because they can avoid glibc version issues.
|
||||||
/// (rustc enables statically linking for linux-musl by default, except for mips.)
|
/// (rustc enables statically linking for linux-musl by default, except for mips.)
|
||||||
/// - Binaries compiled for x86_64 macOS will usually also work on aarch64 macOS.
|
/// - Binaries compiled for x86_64 macOS will usually also work on AArch64 macOS.
|
||||||
/// - Binaries compiled for x86_64 Windows will usually also work on aarch64 Windows 11+.
|
/// - Binaries compiled for x86_64 Windows will usually also work on AArch64 Windows 11+.
|
||||||
/// - Ignore arm for now, as we need to consider the version and whether hard-float is supported.
|
/// - Ignore Arm for now, as we need to consider the version and whether hard-float is supported.
|
||||||
/// https://github.com/rust-lang/rustup/pull/593
|
/// https://github.com/rust-lang/rustup/pull/593
|
||||||
/// https://github.com/cross-rs/cross/pull/1018
|
/// https://github.com/cross-rs/cross/pull/1018
|
||||||
/// Does it seem only armv7l+ is supported?
|
/// Does it seem only armv7l+ is supported?
|
||||||
/// https://github.com/actions/runner/blob/v2.315.0/src/Misc/externals.sh#L189
|
/// https://github.com/actions/runner/blob/v2.321.0/src/Misc/externals.sh#L178
|
||||||
/// https://github.com/actions/runner/issues/688
|
/// https://github.com/actions/runner/issues/688
|
||||||
// TODO: support musl with dynamic linking like wasmtime 22.0.0+'s musl binaries: https://github.com/bytecodealliance/wasmtime/releases/tag/v22.0.0
|
// TODO: support musl with dynamic linking like wasmtime 22.0.0+'s musl binaries: https://github.com/bytecodealliance/wasmtime/releases/tag/v22.0.0
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_camel_case_types)]
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ fn main() -> Result<()> {
|
|||||||
))?
|
))?
|
||||||
.into_json()?;
|
.into_json()?;
|
||||||
// If version_req is latest, it is usually sufficient to look at the latest 100 releases.
|
// If version_req is latest, it is usually sufficient to look at the latest 100 releases.
|
||||||
if r.len() < per_page || version_req.map_or(false, |req| req == "latest") {
|
if r.len() < per_page || version_req.is_some_and(|req| req == "latest") {
|
||||||
releases.append(&mut r);
|
releases.append(&mut r);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -441,7 +441,7 @@ fn main() -> Result<()> {
|
|||||||
&& download_info[&HostPlatform::x86_64_macos].url
|
&& download_info[&HostPlatform::x86_64_macos].url
|
||||||
== download_info[&HostPlatform::aarch64_macos].url
|
== download_info[&HostPlatform::aarch64_macos].url
|
||||||
{
|
{
|
||||||
// macOS universal binary or x86_64 binary that works on both x86_64 and aarch64 (rosetta).
|
// macOS universal binary or x86_64 binary that works on both x86_64 and AArch64 (rosetta).
|
||||||
download_info.remove(&HostPlatform::aarch64_macos);
|
download_info.remove(&HostPlatform::aarch64_macos);
|
||||||
}
|
}
|
||||||
has_build_metadata |= !semver_version.build.is_empty();
|
has_build_metadata |= !semver_version.build.is_empty();
|
||||||
|
|||||||
@@ -43,8 +43,7 @@ fn main() -> Result<()> {
|
|||||||
base_info_dir.push("codegen");
|
base_info_dir.push("codegen");
|
||||||
base_info_dir.push("base");
|
base_info_dir.push("base");
|
||||||
|
|
||||||
let mut paths: Vec<_> =
|
let mut paths: Vec<_> = fs::read_dir(&manifest_dir).unwrap().map(|r| r.unwrap()).collect();
|
||||||
fs::read_dir(manifest_dir.clone()).unwrap().map(|r| r.unwrap()).collect();
|
|
||||||
paths.sort_by_key(fs_err::DirEntry::path);
|
paths.sort_by_key(fs_err::DirEntry::path);
|
||||||
|
|
||||||
let mut tools = vec![MarkdownEntry {
|
let mut tools = vec![MarkdownEntry {
|
||||||
@@ -88,7 +87,7 @@ fn main() -> Result<()> {
|
|||||||
"linux" => platforms.linux = true,
|
"linux" => platforms.linux = true,
|
||||||
"macos" => platforms.macos = true,
|
"macos" => platforms.macos = true,
|
||||||
"windows" => platforms.windows = true,
|
"windows" => platforms.windows = true,
|
||||||
&_ => todo!(),
|
_ => todo!(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user