mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-27 01:20:28 +00:00
Compare commits
75 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
10b774e4cd | ||
|
|
d5fae932b8 | ||
|
|
0329ca5b7b | ||
|
|
d1bca82356 | ||
|
|
6d509c1efb | ||
|
|
b184acdcd4 | ||
|
|
e52d622f2d | ||
|
|
a9f98a05a1 | ||
|
|
d70e241ae4 | ||
|
|
c0ee75ff2e | ||
|
|
e49357f968 | ||
|
|
b208058c0b | ||
|
|
0d6353d3dc | ||
|
|
c2c2082215 | ||
|
|
899989dbec | ||
|
|
01667525f8 | ||
|
|
3068b7dc83 | ||
|
|
14cbe24ac1 | ||
|
|
9b5b983efc | ||
|
|
1098590842 | ||
|
|
d2dd30e4f1 | ||
|
|
f596a8aa9f | ||
|
|
01b0553617 | ||
|
|
74dc5114f4 | ||
|
|
1162624e26 | ||
|
|
eba39d0ea4 | ||
|
|
48b4f3243f | ||
|
|
47246c73b5 | ||
|
|
a005b5b568 | ||
|
|
f03bd5e420 | ||
|
|
19b440e2a1 | ||
|
|
c94523c8cc | ||
|
|
326767beec | ||
|
|
9987ee4c6f | ||
|
|
ffad14352b | ||
|
|
c86e00d2f3 | ||
|
|
0002486ff7 | ||
|
|
a7eed8c9d8 | ||
|
|
3d2f04f8b4 | ||
|
|
a4be0bd799 | ||
|
|
96ad7857af | ||
|
|
3d5321a5e3 | ||
|
|
7a9733edc1 | ||
|
|
d9dbaa35c1 | ||
|
|
8ef8d5c3d7 | ||
|
|
34c5068afd | ||
|
|
862cbe3dad | ||
|
|
4abee32ddd | ||
|
|
f9ee7f5ee5 | ||
|
|
d5ead4fdbf | ||
|
|
7a2fb89331 | ||
|
|
9f5856e181 | ||
|
|
93d33733d0 | ||
|
|
02cfd03d1c | ||
|
|
ef34468ec4 | ||
|
|
8c071244cd | ||
|
|
0c33bd30b5 | ||
|
|
0078623260 | ||
|
|
bdcea8ae05 | ||
|
|
607d37ff14 | ||
|
|
df5e716edf | ||
|
|
9081a21d93 | ||
|
|
4772f78be9 | ||
|
|
64e43f34b0 | ||
|
|
7959d3152f | ||
|
|
6cd93b2dae | ||
|
|
8adeb5bc7d | ||
|
|
715c07ff04 | ||
|
|
7d63af0a88 | ||
|
|
c3145b9a6f | ||
|
|
285438a9d9 | ||
|
|
4978b3c854 | ||
|
|
6224cba8b6 | ||
|
|
203bfd72b0 | ||
|
|
b00c5f12b5 |
2
.github/.cspell/project-dictionary.txt
vendored
2
.github/.cspell/project-dictionary.txt
vendored
@@ -2,6 +2,7 @@ almalinux
|
||||
bindgen
|
||||
binstall
|
||||
coreutils
|
||||
cyclonedx
|
||||
distro
|
||||
doas
|
||||
dprint
|
||||
@@ -19,7 +20,6 @@ pwsh
|
||||
quickinstall
|
||||
rdme
|
||||
sccache
|
||||
shellcheck
|
||||
shfmt
|
||||
syft
|
||||
udeps
|
||||
|
||||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -55,7 +55,7 @@ jobs:
|
||||
runs-on: ${{ matrix.os }}
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: taiki-e/github-actions/checkout@main
|
||||
- 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
|
||||
@@ -130,7 +130,7 @@ jobs:
|
||||
run: apk --no-cache add bash cargo
|
||||
shell: sh
|
||||
if: startsWith(matrix.container, 'alpine')
|
||||
- uses: taiki-e/github-actions/checkout@main
|
||||
- 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
|
||||
@@ -145,7 +145,7 @@ jobs:
|
||||
timeout-minutes: 60
|
||||
container: ubuntu:22.04
|
||||
steps:
|
||||
- uses: taiki-e/github-actions/checkout@main
|
||||
- uses: taiki-e/checkout-action@v1
|
||||
- name: Generate tool list
|
||||
id: tool-list
|
||||
run: tools/ci/tool-list.sh >>"${GITHUB_OUTPUT}"
|
||||
@@ -160,7 +160,7 @@ jobs:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: taiki-e/github-actions/checkout@main
|
||||
- uses: taiki-e/checkout-action@v1
|
||||
- name: Install Rust
|
||||
run: rustup toolchain add nightly --no-self-update && rustup default nightly
|
||||
- run: tools/manifest.sh
|
||||
|
||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: taiki-e/github-actions/checkout@main
|
||||
- uses: taiki-e/checkout-action@v1
|
||||
- uses: taiki-e/create-gh-release-action@v1
|
||||
with:
|
||||
changelog: CHANGELOG.md
|
||||
|
||||
@@ -8,12 +8,12 @@ error_on_line_overflow = true
|
||||
# Override the default formatting style.
|
||||
# See https://internals.rust-lang.org/t/running-rustfmt-on-rust-lang-rust-and-other-rust-lang-repositories/8732/81.
|
||||
use_small_heuristics = "Max"
|
||||
# See https://github.com/rust-dev-tools/fmt-rfcs/issues/149.
|
||||
# This is the default of 2024 edition https://github.com/rust-lang/rust/pull/114764.
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3370)
|
||||
overflow_delimited_expr = true
|
||||
# This is unstable (tracking issue: none).
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/4991).
|
||||
imports_granularity = "Crate"
|
||||
# This is unstable (tracking issue: none).
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/5083).
|
||||
group_imports = "StdExternalCrate"
|
||||
|
||||
# Apply rustfmt to more places.
|
||||
|
||||
149
CHANGELOG.md
149
CHANGELOG.md
@@ -10,6 +10,126 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.31.2] - 2024-03-28
|
||||
|
||||
- Fix `cargo-spellcheck` installation bug. ([#428](https://github.com/taiki-e/install-action/pull/428))
|
||||
|
||||
## [2.31.1] - 2024-03-28
|
||||
|
||||
- Update `protoc@latest` to 3.26.1.
|
||||
|
||||
## [2.31.0] - 2024-03-27
|
||||
|
||||
- Support `typos`. ([#422](https://github.com/taiki-e/install-action/pull/422), thanks @jayvdb)
|
||||
|
||||
- Support `cargo-spellcheck`. ([#423](https://github.com/taiki-e/install-action/pull/423), thanks @jayvdb)
|
||||
|
||||
## [2.30.0] - 2024-03-27
|
||||
|
||||
- Support `cargo-cyclonedx`. ([#424](https://github.com/taiki-e/install-action/pull/424), thanks @jayvdb)
|
||||
|
||||
- Update `cargo-hack@latest` to 0.6.23.
|
||||
|
||||
## [2.29.8] - 2024-03-26
|
||||
|
||||
- Update `syft@latest` to 1.1.0.
|
||||
|
||||
- Update `biome@latest` to 1.6.3.
|
||||
|
||||
## [2.29.7] - 2024-03-24
|
||||
|
||||
- Update `cargo-machete@latest` to 0.6.2.
|
||||
|
||||
## [2.29.6] - 2024-03-23
|
||||
|
||||
- Update `cargo-deny@latest` to 0.14.20.
|
||||
|
||||
## [2.29.5] - 2024-03-22
|
||||
|
||||
- Update `biome@latest` to 1.6.2.
|
||||
|
||||
## [2.29.4] - 2024-03-22
|
||||
|
||||
- Update `cargo-deny@latest` to 0.14.19.
|
||||
|
||||
## [2.29.3] - 2024-03-21
|
||||
|
||||
- Update `cargo-deny@latest` to 0.14.18.
|
||||
|
||||
## [2.29.2] - 2024-03-20
|
||||
|
||||
- Update `wasmtime@latest` to 19.0.0.
|
||||
|
||||
## [2.29.1] - 2024-03-19
|
||||
|
||||
- Update `cargo-minimal-versions@latest` to 0.1.27.
|
||||
|
||||
## [2.29.0] - 2024-03-18
|
||||
|
||||
- Support `git-cliff`. ([#411](https://github.com/taiki-e/install-action/pull/411), thanks @tranzystorekk)
|
||||
|
||||
## [2.28.16] - 2024-03-17
|
||||
|
||||
- Update `cargo-deny@latest` to 0.14.17.
|
||||
|
||||
## [2.28.15] - 2024-03-16
|
||||
|
||||
- Update `cargo-llvm-cov@latest` to 0.6.8.
|
||||
|
||||
## [2.28.14] - 2024-03-13
|
||||
|
||||
- Update `protoc@latest` to 3.26.0.
|
||||
|
||||
## [2.28.13] - 2024-03-13
|
||||
|
||||
- Update `wasmtime@latest` to 18.0.3.
|
||||
|
||||
## [2.28.12] - 2024-03-12
|
||||
|
||||
- Update `biome@latest` to 1.6.1.
|
||||
|
||||
## [2.28.11] - 2024-03-11
|
||||
|
||||
- Update `just@latest` to 1.25.2.
|
||||
|
||||
## [2.28.10] - 2024-03-10
|
||||
|
||||
- Update `cargo-udeps@latest` to 0.1.47.
|
||||
|
||||
## [2.28.9] - 2024-03-10
|
||||
|
||||
- Update `cargo-llvm-cov@latest` to 0.6.7.
|
||||
|
||||
## [2.28.8] - 2024-03-10
|
||||
|
||||
- Update `cargo-no-dev-deps@latest` to 0.2.12.
|
||||
|
||||
- Update `cargo-minimal-versions@latest` to 0.1.26.
|
||||
|
||||
- Update `cargo-hack@latest` to 0.6.22.
|
||||
|
||||
- Update `cargo-binstall@latest` to 1.6.4.
|
||||
|
||||
## [2.28.7] - 2024-03-09
|
||||
|
||||
- Update `just@latest` to 1.25.0.
|
||||
|
||||
## [2.28.6] - 2024-03-08
|
||||
|
||||
- Update `biome@latest` to 1.6.0.
|
||||
|
||||
## [2.28.5] - 2024-03-08
|
||||
|
||||
- Update `shellcheck@latest` to 0.10.0.
|
||||
|
||||
## [2.28.4] - 2024-03-06
|
||||
|
||||
- Update `syft@latest` to 1.0.1.
|
||||
|
||||
## [2.28.3] - 2024-03-06
|
||||
|
||||
- Update `cargo-hack@latest` to 0.6.21.
|
||||
|
||||
## [2.28.2] - 2024-03-06
|
||||
|
||||
- Update `cargo-deny@latest` to 0.14.16.
|
||||
@@ -1847,7 +1967,34 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.28.2...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.31.2...HEAD
|
||||
[2.31.2]: https://github.com/taiki-e/install-action/compare/v2.31.1...v2.31.2
|
||||
[2.31.1]: https://github.com/taiki-e/install-action/compare/v2.31.0...v2.31.1
|
||||
[2.31.0]: https://github.com/taiki-e/install-action/compare/v2.30.0...v2.31.0
|
||||
[2.30.0]: https://github.com/taiki-e/install-action/compare/v2.29.8...v2.30.0
|
||||
[2.29.8]: https://github.com/taiki-e/install-action/compare/v2.29.7...v2.29.8
|
||||
[2.29.7]: https://github.com/taiki-e/install-action/compare/v2.29.6...v2.29.7
|
||||
[2.29.6]: https://github.com/taiki-e/install-action/compare/v2.29.5...v2.29.6
|
||||
[2.29.5]: https://github.com/taiki-e/install-action/compare/v2.29.4...v2.29.5
|
||||
[2.29.4]: https://github.com/taiki-e/install-action/compare/v2.29.3...v2.29.4
|
||||
[2.29.3]: https://github.com/taiki-e/install-action/compare/v2.29.2...v2.29.3
|
||||
[2.29.2]: https://github.com/taiki-e/install-action/compare/v2.29.1...v2.29.2
|
||||
[2.29.1]: https://github.com/taiki-e/install-action/compare/v2.29.0...v2.29.1
|
||||
[2.29.0]: https://github.com/taiki-e/install-action/compare/v2.28.16...v2.29.0
|
||||
[2.28.16]: https://github.com/taiki-e/install-action/compare/v2.28.15...v2.28.16
|
||||
[2.28.15]: https://github.com/taiki-e/install-action/compare/v2.28.14...v2.28.15
|
||||
[2.28.14]: https://github.com/taiki-e/install-action/compare/v2.28.13...v2.28.14
|
||||
[2.28.13]: https://github.com/taiki-e/install-action/compare/v2.28.12...v2.28.13
|
||||
[2.28.12]: https://github.com/taiki-e/install-action/compare/v2.28.11...v2.28.12
|
||||
[2.28.11]: https://github.com/taiki-e/install-action/compare/v2.28.10...v2.28.11
|
||||
[2.28.10]: https://github.com/taiki-e/install-action/compare/v2.28.9...v2.28.10
|
||||
[2.28.9]: https://github.com/taiki-e/install-action/compare/v2.28.8...v2.28.9
|
||||
[2.28.8]: https://github.com/taiki-e/install-action/compare/v2.28.7...v2.28.8
|
||||
[2.28.7]: https://github.com/taiki-e/install-action/compare/v2.28.6...v2.28.7
|
||||
[2.28.6]: https://github.com/taiki-e/install-action/compare/v2.28.5...v2.28.6
|
||||
[2.28.5]: https://github.com/taiki-e/install-action/compare/v2.28.4...v2.28.5
|
||||
[2.28.4]: https://github.com/taiki-e/install-action/compare/v2.28.3...v2.28.4
|
||||
[2.28.3]: https://github.com/taiki-e/install-action/compare/v2.28.2...v2.28.3
|
||||
[2.28.2]: https://github.com/taiki-e/install-action/compare/v2.28.1...v2.28.2
|
||||
[2.28.1]: https://github.com/taiki-e/install-action/compare/v2.28.0...v2.28.1
|
||||
[2.28.0]: https://github.com/taiki-e/install-action/compare/v2.27.15...v2.28.0
|
||||
|
||||
@@ -7,7 +7,6 @@ members = ["tools/codegen"]
|
||||
[workspace.lints.rust]
|
||||
improper_ctypes = "warn"
|
||||
improper_ctypes_definitions = "warn"
|
||||
missing_debug_implementations = "warn"
|
||||
non_ascii_idents = "warn"
|
||||
rust_2018_idioms = "warn"
|
||||
single_use_lifetimes = "warn"
|
||||
@@ -25,6 +24,7 @@ undocumented_unsafe_blocks = "warn"
|
||||
# Suppress buggy or noisy clippy lints
|
||||
bool_assert_comparison = { level = "allow", priority = 1 }
|
||||
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
|
||||
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
|
||||
doc_markdown = { level = "allow", priority = 1 }
|
||||
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
|
||||
manual_assert = { level = "allow", priority = 1 }
|
||||
|
||||
@@ -85,6 +85,7 @@ https://spdx.org/licenses
|
||||
| [**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-binstall**][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 | [Apache-2.0](https://github.com/RalfJung/cargo-careful/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/RalfJung/cargo-careful/blob/HEAD/LICENSE-MIT) |
|
||||
| [**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/HEAD/LICENSE) |
|
||||
| [**cargo-deny**](https://github.com/EmbarkStudios/cargo-deny) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/EmbarkStudios/cargo-deny/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/EmbarkStudios/cargo-deny/blob/HEAD/LICENSE-MIT) |
|
||||
| [**cargo-dinghy**](https://github.com/sonos/dinghy) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sonos/dinghy/releases) | Linux, macOS | [Apache-2.0](https://github.com/sonos/dinghy/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/sonos/dinghy/blob/HEAD/LICENSE-MIT) |
|
||||
| [**cargo-export**](https://github.com/bazhenov/cargo-export) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bazhenov/cargo-export/releases) | Linux, macOS, Windows | [MIT](https://github.com/bazhenov/cargo-export/blob/HEAD/LICENSE) |
|
||||
@@ -96,11 +97,13 @@ https://spdx.org/licenses
|
||||
| [**cargo-no-dev-deps**](https://github.com/taiki-e/cargo-no-dev-deps) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-no-dev-deps/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/cargo-no-dev-deps/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-no-dev-deps/blob/HEAD/LICENSE-MIT) |
|
||||
| [**cargo-rdme**](https://github.com/orium/cargo-rdme) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/orium/cargo-rdme/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/orium/cargo-rdme/blob/HEAD/LICENSE.md) |
|
||||
| [**cargo-sort**](https://github.com/DevinR528/cargo-sort) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/DevinR528/cargo-sort/releases) | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/DevinR528/cargo-sort/blob/55ec89082466f6bb246d870a8d56d166a8e1f08b/Cargo.toml#L5) |
|
||||
| [**cargo-spellcheck**](https://github.com/drahnr/cargo-spellcheck) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/drahnr/cargo-spellcheck/releases) | Linux and Windows | [LGPLv2.1](https://github.com/drahnr/cargo-spellcheck/blob/f60c81ad0134c12faf08715f08d14f66e749f6e7/docs/checkers.md#nlprules) |
|
||||
| [**cargo-tarpaulin**](https://github.com/xd009642/tarpaulin) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/xd009642/tarpaulin/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/xd009642/tarpaulin/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/xd009642/tarpaulin/blob/HEAD/LICENSE-MIT) |
|
||||
| [**cargo-udeps**](https://github.com/est31/cargo-udeps) | `$CARGO_HOME/bin` | [GitHub Release](https://github.com/est31/cargo-udeps/releases) | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE) |
|
||||
| [**cargo-valgrind**](https://github.com/jfrimmel/cargo-valgrind) | `$CARGO_HOME/bin` | [GitHub Release](https://github.com/jfrimmel/cargo-valgrind/releases) | Linux, macOS, Windows | [MIT](https://github.com/jfrimmel/cargo-valgrind/blob/HEAD/LICENSE-MIT) or [Apache-2.0](https://github.com/jfrimmel/cargo-valgrind/blob/HEAD/LICENSE-APACHE) |
|
||||
| [**cross**](https://github.com/cross-rs/cross) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cross-rs/cross/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/cross-rs/cross/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/cross-rs/cross/blob/HEAD/LICENSE-MIT) |
|
||||
| [**dprint**](https://github.com/dprint/dprint) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/dprint/dprint/releases) | Linux, macOS, Windows | [MIT](https://github.com/dprint/dprint/blob/HEAD/LICENSE) |
|
||||
| [**git-cliff**](https://github.com/orhun/git-cliff) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/orhun/git-cliff/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/orhun/git-cliff/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/orhun/git-cliff/blob/HEAD/LICENSE-MIT) |
|
||||
| [**grcov**](https://github.com/mozilla/grcov) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/mozilla/grcov/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/mozilla/grcov/blob/HEAD/LICENSE-MPL-2.0) |
|
||||
| [**just**](https://github.com/casey/just) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/casey/just/releases) | Linux, macOS, Windows | [CC0-1.0](https://github.com/casey/just/blob/HEAD/LICENSE) |
|
||||
| [**mdbook-linkcheck**](https://github.com/Michael-F-Bryan/mdbook-linkcheck) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases) | Linux, macOS, Windows | [MIT](https://github.com/Michael-F-Bryan/mdbook-linkcheck/blob/HEAD/LICENSE) |
|
||||
@@ -113,6 +116,7 @@ https://spdx.org/licenses
|
||||
| [**shellcheck**](https://www.shellcheck.net) | `/usr/local/bin` | [GitHub Releases](https://github.com/koalaman/shellcheck/releases) | Linux, macOS, Windows | [GPL-3.0-or-later](https://github.com/koalaman/shellcheck/blob/HEAD/LICENSE) |
|
||||
| [**shfmt**](https://github.com/mvdan/sh) | `/usr/local/bin` | [GitHub Releases](https://github.com/mvdan/sh/releases) | Linux, macOS, Windows | [BSD-3-Clause](https://github.com/mvdan/sh/blob/HEAD/LICENSE) |
|
||||
| [**syft**](https://github.com/anchore/syft) | `/usr/local/bin` | [Github Releases](https://github.com/anchore/syft/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/anchore/syft/blob/HEAD/LICENSE) |
|
||||
| [**typos**](https://github.com/crate-ci/typos) | `$CARGO_HOME/bin` | [Github Releases](https://github.com/crate-ci/typos/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/crate-ci/typos/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/crate-ci/typos/blob/HEAD/LICENSE-MIT) |
|
||||
| [**valgrind**](https://valgrind.org) | `/snap/bin` | [snap](https://snapcraft.io/install/valgrind/ubuntu) | Linux | [GPL-2.0-or-later](https://valgrind.org/docs/manual/license.gpl.html) |
|
||||
| [**wasm-bindgen**](https://github.com/rustwasm/wasm-bindgen) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rustwasm/wasm-bindgen/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rustwasm/wasm-bindgen/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rustwasm/wasm-bindgen/blob/HEAD/LICENSE-MIT) |
|
||||
| [**wasm-pack**](https://github.com/rustwasm/wasm-pack) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rustwasm/wasm-pack/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rustwasm/wasm-pack/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rustwasm/wasm-pack/blob/HEAD/LICENSE-MIT) |
|
||||
|
||||
87
manifests/biome.json
generated
87
manifests/biome.json
generated
@@ -35,10 +35,93 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.5.3"
|
||||
"version": "1.6.3"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.5.3"
|
||||
"version": "1.6.3"
|
||||
},
|
||||
"1.6": {
|
||||
"version": "1.6.3"
|
||||
},
|
||||
"1.6.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "55792cdf4299d51ef357f7a6933f0cd98b573cc8f8c7883a0deef3f1b2a287c3"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "ab5e8ba4579c80e4819eb55ad1447898165915963918c03a44695905d0a8bf0c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "fd2ba0e350d5e0a764924a50e0aec1d6648a00a90b7cfe04d093f313ff813f9f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "94531e86898a52ecb6b59e02e52ea637383b564155117b1e1a9d972ad3dc51c0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "4583613e1c9b6c4dc65d1b9b79d199f205dd7e823e315bf07883656d3f9cc6b0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "9627c0550da0002244c1cb0ee94e24ab6522738d996d9a594c0cb14ce77cf12e"
|
||||
}
|
||||
},
|
||||
"1.6.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "2edac9e3f9b811632a5c177885a464dfe047d33f8dd00934e63d09fdb9b4629a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "2ddbb5c9c30aae6a5575f6725f38f80778c76325b52a252cff09ec2c70102b38"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "1a0c8eab84c965c88c3a1d5e57cb00bc160362420719207b301cbd7060ed5491"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "03dc64013c3f478748e0a2e5519d654d8896eb8f0112d6510752c918f5c69c35"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "d0393790c7a3adb1ea9a8870e3f6f63707014cc8d14ca3c09562d6816b91cd22"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "bddef88ae0614f2c527f67eb3d9c70a2393629f6bebf0207337498164bbb6155"
|
||||
}
|
||||
},
|
||||
"1.6.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "698249d598ba196ab32c2a383b4b00e429cdbb5a24c2b11ea6aa80c4ca0dd15c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "49f776fca81c8b3ac6b8051429bb240c38a41949fbf8d55713df6b3ff4797a91"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "f3dcf3669f630b6017ce6e23c1d8a8424295b5c504922c6dfab029d9ecacea3c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "dcf867dfa1541670d0eb2bde117f1f01f5dcfe66ea30cd97adf1dd96a1a73f70"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "6373cbc2c9dce3aa1fd3af2b2293a792e13e374b0c503d43a80e9fc35f100502"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "97e4b7d0c1256e51028ea496c665fca8e53237ff44434ccd27a477d38167ad43"
|
||||
}
|
||||
},
|
||||
"1.6.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "4a76d09b1c06c3b7c486e99c899076d4f60f8b34d0bb9b41a61abee16345a99c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "4cf6468c39e3eb45a5bfc4d65365d1b748470d0f97235471263ef7dd66b2bae5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "43a2df63d8bc3c1afe3560d9a2c4629d6961d31b99d251446ce359e1ce7844dd"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "7897c55191a8c500107764102c0cc5e29f5817829cd4eda6d9e1236aec95cdf7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "396602d624fe1a68a6ea59a4d75bd43d2643f9283c543e240a86fbd3d21192b6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "04e5fb6d337f468ab50fae1d2586dd210a8d6adb2cf4879011119b1dcb8446a1"
|
||||
}
|
||||
},
|
||||
"1.5": {
|
||||
"version": "1.5.3"
|
||||
|
||||
16
manifests/cargo-binstall.json
generated
16
manifests/cargo-binstall.json
generated
@@ -21,26 +21,26 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.6.3"
|
||||
"version": "1.6.4"
|
||||
},
|
||||
"1.6.3": {
|
||||
"1.6.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "ff8f86eaf79812acc259d249e0c62f4b3103d28a16ec02e7f64f8e3bc9c3d2e9"
|
||||
"checksum": "b07160c21cdfcc24c3afe94b3cb12bf6d111cef7b218cce85a0c1dfae7e106dd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "f8eaee08667695cb4d446c5c474ba5415c3bb07be1a213728107ad65788104f1"
|
||||
"checksum": "761839db77de482f9bbddb87d43563f8308e7dbdccf2bb3c66f3bcbe13a5dee0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "44394103dc261b05ac928f23f8013f5c7e8355a10e849f096d792030f82c89c4"
|
||||
"checksum": "2a05851e1a854cc27c7c6a04f665d506bf2b7aa0aa62721a82af9aeeff9d20d2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "98d1b33b2c2cf076bdc8993d1a645ade9cb36919e22516faf5830933513a03fa"
|
||||
"checksum": "70c17459e4bc0b417679e66af55199603d80fa751d819b86713f700e3e9a6602"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "89696b9b02605c0775ca02b0bab3f07843833e3e247b953a5b8f97daa043bdc1"
|
||||
"checksum": "64755bfa178ba061c90d46fdf6c977c9b78564bcb4605ff827855d6623453be9"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "cec760fdeb4523e3de1d7febc1d07bee9aa9a3a3837fd9ec0191ad7396e38ca0"
|
||||
"checksum": "1277c4ae1a772f803355e256192c2b8bc434421dbd137a9b895ca8031a31ddb3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
31
manifests/cargo-cyclonedx.json
generated
Normal file
31
manifests/cargo-cyclonedx.json
generated
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"rust_crate": "cargo-cyclonedx",
|
||||
"template": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/CycloneDX/cyclonedx-rust-cargo/releases/download/cargo-cyclonedx-${version}/cargo-cyclonedx-linux-amd64.tar.gz"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/CycloneDX/cyclonedx-rust-cargo/releases/download/cargo-cyclonedx-${version}/cargo-cyclonedx-Darwin-x86_64.tar.gz"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/CycloneDX/cyclonedx-rust-cargo/releases/download/cargo-cyclonedx-${version}/cargo-cyclonedx-Win-x86_64.zip"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.5.0"
|
||||
},
|
||||
"0.5": {
|
||||
"version": "0.5.0"
|
||||
},
|
||||
"0.5.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"checksum": "7daa885e9b6f59bf7674a2972bf1f37d9e21ab7461c3e2f9c59e99a966ab6026"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "70b197f8095fe2473baef1d96dd4409abb1aef20aeeea00f8a0cbebc25528ddb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "11e063c29bdd85ceb061b30aa11073238a8c93302b1ff3f5ac37e91ac90b425a"
|
||||
}
|
||||
}
|
||||
}
|
||||
60
manifests/cargo-deny.json
generated
60
manifests/cargo-deny.json
generated
@@ -19,10 +19,66 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.14.16"
|
||||
"version": "0.14.20"
|
||||
},
|
||||
"0.14": {
|
||||
"version": "0.14.16"
|
||||
"version": "0.14.20"
|
||||
},
|
||||
"0.14.20": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "1c9f8cfc23647346f1aa7ba0ed3167191f3198aba3dc5a957fda6f85a82fc424"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "4e3cdb8237fd1287aa101d8c4f66acbe201e7c71fa6068646b8effee703bf8e5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "89f0296f5340141d11fef72a5a129be4abf0bab98660c91572116fc16b43762b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "dee26e05bcca6ab27d8b00b167425fab26638eb59efb785cdfe0b57d84a06234"
|
||||
}
|
||||
},
|
||||
"0.14.19": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "dfb7893226470ab5bd7f6c7b91b40c461ff5736e9ac504f233102a66ab1fa934"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "f93fe56901820f9077a53d69047486e693d21c392692e9d9a60fdbc6d641761d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "2755ba2fa41079f51ce0bcf984c4a440c9e0ecf88b7df6a36aeb02b0a8449bd8"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "fb172c520aa24de1a4b9ee3aa68231d7a635f9ac7795c1f4c3602feeab6ed5d0"
|
||||
}
|
||||
},
|
||||
"0.14.18": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "b2edd818de5169128e23480bfece4c70ae9d4402e5a1748ae548fc29347b82b3"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "3aee99abb5761866b1e83e790394a024dc78bffb6987263b428082102d069eec"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "fdf5e89d7438d02434fc9d700bd547cdfa2401ccbe3a808ff24f1565686d1432"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "010b9143d9347218a9a88bdd5b0616349191f015ce9b125f6ac1018bd96944c2"
|
||||
}
|
||||
},
|
||||
"0.14.17": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "d678a3d16a42795264882f90a09bf603c7403395b20254ab2dfd9c5e256d439f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "4295788546977b45b67044ae8f7cc857a3e6674ea2b2d73afb467f2824fea288"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "f755e9915167f943ca7b4e008412e2ee32a265d2f5f1f4951815ac58da81fbda"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "e25d594a60820e52132cf9c8ae172821c97c1e889cfe0dfbde51946dad53a350"
|
||||
}
|
||||
},
|
||||
"0.14.16": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
82
manifests/cargo-hack.json
generated
82
manifests/cargo-hack.json
generated
@@ -2,10 +2,88 @@
|
||||
"rust_crate": "cargo-hack",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.6.20"
|
||||
"version": "0.6.23"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.20"
|
||||
"version": "0.6.23"
|
||||
},
|
||||
"0.6.23": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.23/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "93769457e869d0bd5ae322666cc04f2515d558bc10c7d5da872eac6aaef25c43"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.23/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||
"checksum": "c47a23a2a4e71d0a6f74344a87a38872e0b6dbc68ee86cc6c5df4d872080ef09"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.23/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "90edc889f244a17bdc1a74944b751d2a9176ae86eb40917ccc0ca24fe69192b3"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.23/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "82ce9c3262e5c948555c3097562ffc6c16aa284d3aabf7d6b221fada37b25f9c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.23/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||
"checksum": "54fdf9c43aaeb5b1d40154fddc84769a78c2c8854939cd5b174c9fe1eff4f5ec"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.23/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "11e559db60945df66521b39f3168d0381ab97d5eeb0bc6b9acd16635b1ec342b"
|
||||
}
|
||||
},
|
||||
"0.6.22": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "25d19166c2e3be108d815bfb15624b2ff82909a0b92bfbf56f5c3e2e44db4eb6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||
"checksum": "eff3116e6c9f0ac543d3ad02960a626f1e1a82aebb0d1d5377ed1cf3c923a746"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "d4d6482e55ca7c08cddde24eb9539c0642392eef3c79a3abde26bee9a0308735"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "5e025b0a806ee48440dbc858f9239e45dc823ea178a1c8953eb6b36209f212e2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||
"checksum": "e0a30429c822453c0557defcffc3bb33146bf211489e6848024f60023446e897"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "fdd599e2327e54422b7288bc5385e1e0353a60e48376107f9bc8e659b082abc2"
|
||||
}
|
||||
},
|
||||
"0.6.21": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.21/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "4d1cc13c72ac620df9265506ad8dd03f84117c8c653586be3d73590e013fe9a8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.21/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||
"checksum": "675e3a63d6e741a53363e71b29f7babd1f685cfa14168b8914116cdb176f38e0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.21/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "f57ea407c7a2a11c6e31102087b8689c44ecdd8f8eb7c76fe98002cc7efd2f84"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.21/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "52159eb4d6b03441d6a696dc52dd3c46ff06b4983df8524c5d908bcd53c9425d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.21/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||
"checksum": "e37a2eaa79cb04d8868d8c23f45af296433d60b75181bed0be49650cfd7c0c6e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.21/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "faa6323ebb18e54038b19c61d138793c9b1e31dd64e337cbc64cc283faa62a3c"
|
||||
}
|
||||
},
|
||||
"0.6.20": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
38
manifests/cargo-llvm-cov.json
generated
38
manifests/cargo-llvm-cov.json
generated
@@ -18,10 +18,44 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.6.6"
|
||||
"version": "0.6.8"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.6"
|
||||
"version": "0.6.8"
|
||||
},
|
||||
"0.6.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "2d655a09eb0dec705e1ba6be73b2cf81a85d9eed27b8190db9cbc0af7a3030ca"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "076982bc15cd6ebd2d96102a489fe5e2aef981318ff6cd3076a555c77c793f8d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "911bf8162e13c9bfe73d65f608874d300dea6f4c7a49d92ee9dc530bfee858e4"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "a68a0a2082de3118959020616d3112664882afd203379a098b35c5c676200698"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "27aae20fa89be1e4d3540248eb547b710e6836470dd1ed2bc2d4ac145c0875cb"
|
||||
}
|
||||
},
|
||||
"0.6.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "6204c229d533f164fd6d126fe7299f72b58e456a373ee0fed56ec45ee437297a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "a8174bff663399a56a7a393cb2518a81fa1f14717079a7970846c869714cb96c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "dfb37144a677f0c97087aed92fb71658b62ab8f92c38749661f3f7cdd76afe00"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "87e751a63c3b45163aabdd2b46111aaa08ba4d57b5675d307cd637cfa98031bc"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "307463a3e09eaccd8fa58d5d7005f4fd4befa8c8bae902655cb6567f5cbc6a6d"
|
||||
}
|
||||
},
|
||||
"0.6.6": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
26
manifests/cargo-machete.json
generated
26
manifests/cargo-machete.json
generated
@@ -2,10 +2,32 @@
|
||||
"rust_crate": "cargo-machete",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.6.1"
|
||||
"version": "0.6.2"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.1"
|
||||
"version": "0.6.2"
|
||||
},
|
||||
"0.6.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.6.2/cargo-machete-v0.6.2-x86_64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "7c3e6b1407445dbfdc072ade38adc6a200f6967e39a4bf8fb2e0e0ea825ab24c",
|
||||
"bin": "cargo-machete-v0.6.2-x86_64-unknown-linux-musl/cargo-machete"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.6.2/cargo-machete-v0.6.2-x86_64-apple-darwin.tar.gz",
|
||||
"checksum": "53dd62d3bf9be63aca8be9d801c9ff2a3ae740495bea4c390634d8b3eb76c8ae",
|
||||
"bin": "cargo-machete-v0.6.2-x86_64-apple-darwin/cargo-machete"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.6.2/cargo-machete-v0.6.2-x86_64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "9e1d911d5266c5ec81f85a3feacc223f181a6573060803aadda9369ea9973e11",
|
||||
"bin": "cargo-machete-v0.6.2-x86_64-pc-windows-msvc/cargo-machete.exe"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.6.2/cargo-machete-v0.6.2-aarch64-apple-darwin.tar.gz",
|
||||
"checksum": "486b046d10ba14371efedbb44a226b514c42a1735a247f3ff8ad9a548395f080",
|
||||
"bin": "cargo-machete-v0.6.2-aarch64-apple-darwin/cargo-machete"
|
||||
}
|
||||
},
|
||||
"0.6.1": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
44
manifests/cargo-minimal-versions.json
generated
44
manifests/cargo-minimal-versions.json
generated
@@ -21,10 +21,50 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.1.25"
|
||||
"version": "0.1.27"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.25"
|
||||
"version": "0.1.27"
|
||||
},
|
||||
"0.1.27": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "6b51454adffa828cce8279339c50883a4841a196e778f8bc9a82bacf67f445cd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "8796c876ab036b90bbd4d9b2ec7b9a57668cbceb88957040688b6d79dc2629e4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "96d5deb8cc6e89e9fbf26345bc52d342dca87908bf87023e2bf55b233f28402d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "1727b222908e49e57fd93650d798e6327527dbde831b5a432a9b7283a5746d01"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "39b96ff4a6eae73bbb9f7a4a32a933005098046e44db1ede5bbe898037cc5911"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "e6be0e0d5529554a51334df603442f6bc4553d549b70cac5dd7466358589ec61"
|
||||
}
|
||||
},
|
||||
"0.1.26": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "6a8fc07cc5bc50f43045322d4e6380df07ff487b57a467f192a9b9627fd129df"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "11cff520bb3575ce1f0b7ba8e1701e4c2f294a17f85f51a51e1a58bd9b79bff3"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "3b9ebd11fe8d4947fdd58bccf4bd81810a5ff71a5095a0e84118715d721871c7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "2f773cbb435511a07a024d2de3e8f60bd284c77a840811c1234e29f3cb0df5a8"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "0e7b05d74baf1821e53c62ab6dc524847ea3af5a2b9fa0432e3c570e4ac368dd"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "e21a4b25db1989afbafa9a9cc414fc75ff7f6aa75e783160934729c717b4f15e"
|
||||
}
|
||||
},
|
||||
"0.1.25": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
24
manifests/cargo-no-dev-deps.json
generated
24
manifests/cargo-no-dev-deps.json
generated
@@ -21,10 +21,30 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.2.11"
|
||||
"version": "0.2.12"
|
||||
},
|
||||
"0.2": {
|
||||
"version": "0.2.11"
|
||||
"version": "0.2.12"
|
||||
},
|
||||
"0.2.12": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "dc8922c69564dae3b8fb61c92c9f54d0b54fe5280950e05c9e6fed0a82ee66fb"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "ecc61dc31eb42cf8b5bbb37ad0f52e269d881712fb8a54344eef64a91a2f0b56"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "6f354aafb4d3140ca5e3cfadcdde83f4d5d380598bb1106506dbcbf3d096d089"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "8a0a2411f8d86dfbf3999d0f2533d1324ffc84a91feddcaac07154a600ee0e49"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "7e73edade320c92c729eba3264f49679c3bf8267bf57aa5b7bcf7912f645bd18"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "a0f77f2b48cef8c6370b380f5720eeefab53865ee4305a8c587d82ce6bfc8105"
|
||||
}
|
||||
},
|
||||
"0.2.11": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
41
manifests/cargo-spellcheck.json
generated
Normal file
41
manifests/cargo-spellcheck.json
generated
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"rust_crate": "cargo-spellcheck",
|
||||
"template": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-unknown-linux-gnu"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-pc-windows-gnu.exe"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.13.2"
|
||||
},
|
||||
"0.13": {
|
||||
"version": "0.13.2"
|
||||
},
|
||||
"0.13.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"checksum": "f547b8f992dcc43f8a4106bae8b090ecb3fcb7ef6ce336081c22636f70e876d9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "f54fb8243497258115d1eb55b99bfc94ab3e09636c78665d3b6410885ba9190a"
|
||||
}
|
||||
},
|
||||
"0.13.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"checksum": "17af34dbefad5c45d23df3e4e81b0addc78782db0ed2e8e491a1532761463e1e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "d18c19a3c5e7eb9ea516e691b54a4517a60517b6b1fb75b7f56a0c1dcc9b177e"
|
||||
}
|
||||
},
|
||||
"0.13.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"checksum": "41e99240e55f38cc6d43d7ea9f2ccd448f584eefdc262129e4238f057d995923"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "57d45d5942d7ccd49599aae549c0bd5d906868eaeb39481088e55001d65f4784"
|
||||
}
|
||||
}
|
||||
}
|
||||
24
manifests/cargo-udeps.json
generated
24
manifests/cargo-udeps.json
generated
@@ -31,10 +31,30 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.1.45"
|
||||
"version": "0.1.47"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.45"
|
||||
"version": "0.1.47"
|
||||
},
|
||||
"0.1.47": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "906d6f7292231b79d2db04ab04d5e188b6ac789bce7fbb3013130edb82f683c9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "5395256cef3f879018851af1864218e28bbb3fad823fff6c02357a6ccac68ab9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "cc621c60fb055d6849edbe2592be908c5ad0c04508392d7d28c487734a8e4791"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "b242da4b7c24c647e210fbacabafe7dd86161d04e261bd81ed07a0a466a06fee"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "f10a2a8197ecbae3e778d1a0b7ec10b080e389203f36a3d68366f57d80bdf3af"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "202a0f1b27cc67f17e001d8bf8af5a92dccaf1bb9852de0b89f3b9ad4827a5fd"
|
||||
}
|
||||
},
|
||||
"0.1.45": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
562
manifests/git-cliff.json
generated
Normal file
562
manifests/git-cliff.json
generated
Normal file
@@ -0,0 +1,562 @@
|
||||
{
|
||||
"rust_crate": "git-cliff",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-x86_64-unknown-linux-musl.tar.gz",
|
||||
"bin": "git-cliff-${version}/git-cliff"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "git-cliff-${version}/git-cliff"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-x86_64-pc-windows-msvc.zip",
|
||||
"bin": "git-cliff-${version}/git-cliff.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-aarch64-unknown-linux-musl.tar.gz",
|
||||
"bin": "git-cliff-${version}/git-cliff"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "git-cliff-${version}/git-cliff"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-aarch64-pc-windows-msvc.zip",
|
||||
"bin": "git-cliff-${version}/git-cliff.exe"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "2.1.2"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.1.2"
|
||||
},
|
||||
"2.1": {
|
||||
"version": "2.1.2"
|
||||
},
|
||||
"2.1.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "ff5a7e2927a4f79bb641e69728cca82ec8d6824b98ec464c7d9b722d0ec7c9fd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "9ace8b0ebf94fec73b9262100a411c00bc8c66730802e7e8fbe373bb1363b4d5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "c91ee40aa05dc630c43ae0a448ef19c22ccf47754be7696ba7cd76d8d2aa2c0b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "adc0d71795e2a3d3ded03044f80dbfbdf68b094b3e111698974dfe9aa4b92143"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "bcdbbc66327060ef7584bc497adce342ef8f815b1dc46cc183b649b7d0b8a020"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "9abf430ad1f9a536eec6107ee7f6d41e70578b6ad15c3cec7bb2d10db47ed698"
|
||||
}
|
||||
},
|
||||
"2.0": {
|
||||
"version": "2.0.4"
|
||||
},
|
||||
"2.0.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "c9f85b8e4db814b3bde86d87e90501df5883df2163a19c773ab353c7d144405d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "bdc7033a537a72c3d0551b634e0805869d03a540c4c6d7144b650a60f7776660"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "ea1232ca6585c7292cebbf8a1742d1b51e305b8a6ce84c1c6941130b557a6c48"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "4d506fddeae5317cc5ecaca36dc9d1d8ad6a89690355beae7bf524c9cb8a293d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "29b2c38ce195cee02c38cdbe0de4c51c68428ef21f0956f5420f59f1207ad492"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "cf56854d2a5ff935bf09dd7d682b52e2bfeb014d20e75aeeed31f39f433ffbb4"
|
||||
}
|
||||
},
|
||||
"2.0.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "4fd0d9cf6a0c19c3e0f37aed13683ad92994b89ed943fbbd73a137ad9cd56815"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "4e71a0646212301829750e2c3943309ab80c1d7a5a46f368116eb4953b73bfe2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "797ce004bfabafce1cb9f991937eb43aa52e5e6adc3a7ca8b37cb058f85ff08d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "50adaf8cf0fd17f2a0657233d9aa07f46c5abef63da6c0e1a7024f61f759fe35"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "36ba70be562e3e6e73b7bf2977d803a69ffa88db4ccd9d97758043221fc7f466"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "c7bb385a49c3efcdbc65d2e46e2db245def0556579ea75004e405f509cca52ff"
|
||||
}
|
||||
},
|
||||
"2.0.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "17cac2d43f7e9c01f1f4c060162e07f7cca01a5c65019c39fe3f9ec1be4f6bf2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "05197004bf24b99de95651ee82fdd314ab633b61f4744eaa389e35efef1c9a18"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "5b6539ca4fc37c51468cd5b21cf547ba3cfb81247b9c4c768c374532b6bc3beb"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "a22bbf9afdd9f4b267cf015ff4d408842ade546981918d36bf831edc32161f37"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "4ecda8d0c7d3daac903c3ca02e574f6cb8b4de1eb04f7290db72d536b52d407e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "3592542d1fe27a89c375720af8016928cfe1fe6ef25e25d0c55660fd70c4ee1a"
|
||||
}
|
||||
},
|
||||
"1": {
|
||||
"version": "1.4.0"
|
||||
},
|
||||
"1.4": {
|
||||
"version": "1.4.0"
|
||||
},
|
||||
"1.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "44664b357397a832874a673076fa65773c081c255986e163f44d4f9c7021a742"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "a120f4b6104cb6e1c9c37230a42d5359847be2230332ac9989a1285213aa1559"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "5aa4147cb7862438c61c7d73a6651a48b91dc36b545fd0c61a790b6f71ed0c9e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "664ff97641e21954acc01ab190bf88c519b772f4adee4e3189f1f139bd1a3a9f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "e4e0a0023d6669438231abbb121b86758af4cd1dbd6a1ab736d2438714ad4d5c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "09420ffcae595a3a03930da75b7b4de5e0f5de7d654b65e8a7d30d620813bc13"
|
||||
}
|
||||
},
|
||||
"1.3": {
|
||||
"version": "1.3.1"
|
||||
},
|
||||
"1.3.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "0f9fe4bc2057442f98976948638b54527a673f0c196dda8e328ad9e18666bd92"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "2fb6bef4d649fe9fc6723d83ec2b9b78f76301fa4543e47ccbe5675d2ffda758"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "52222b33aaad007b1848418c5b2f3dd68cb940490d8088a6018a62dffce066e9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "778b9e32f2bdac52e36310cfd74f729d272774cf6bc57ce25371d83b8b98b789"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "30dd2d93c9fc25cc4a5a59457021da39875bcfdf444a9baa222ea051bf277db3"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "2e275941f0acdb4ddb09bb0eebd1d28616f1baff015b09dd6a623a0d90f804aa"
|
||||
}
|
||||
},
|
||||
"1.3.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "05835750f46b95140e868ec7640585cf2957c09ec6ca73e9d20deebb27334429"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "9ada21878dec7b4bb85c400fd1a20a4900920453b82d4e3b5fae3450f49fdd7e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "710abbad2dabe602eadffe255e73b62c4a664c314c548ac4e95c33043606cddd"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "83786afe9668d53a3c31762344ec6981e3d5fe2689bf4d40e0ea0f6fc2afd4a1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "bd5cd6c64bc3cf1040bac6d33ee2e534228252097ae96a3407ff3ae4468b9afa"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "d8d8f4fa85e4b1eb0c77dfcb4cc60896f15fa1d08b2a03e39ec62fa41230918f"
|
||||
}
|
||||
},
|
||||
"1.2": {
|
||||
"version": "1.2.0"
|
||||
},
|
||||
"1.2.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "b7ea0417a5f4b854b11156c7098351e3bc144ab2aba4361f2f19f3bf09181140"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "27623e65b5e916b620fb37eb23abb27f6b36a7325a1d6f782e5b117b6b0a84f9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "8f8412bc3ae7da3a7ee16fa10fe3b0003ac4bfcafd7d1fdceb744df952a97c23"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "256dea5e4ce16bcc1ddbc86658178fc3442683bc59eb4b06ed42e71bc95f29c5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "35ddb5442a6c81cb98f6be54acc430df898dabd454c53e143b2085b61fa49ccb"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "953a247cbf18596f4eaccc49e93df2270293323becf682347610bbc9ece653f7"
|
||||
}
|
||||
},
|
||||
"1.1": {
|
||||
"version": "1.1.2"
|
||||
},
|
||||
"1.1.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "5e761958b33c5f2c22825b25747b489a27189cfcb2df8fd5f346e9e5768576e1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "b63a065b4474a7e22351627dc93e55ab7b5cfe7a07dbca186f677499f8428261"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "f5013fb320cd892f2bdf2f4c38bb984f613a3fc41356eeec1685730a6b580c79"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "fb8931cd95bb1e3038b20905cca7f1fdb88bb2fe76a7aad0e24e87e65bc22bd9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "8958c8151da2dbc0f5afbf2a91b94e4411e6c916b06ccce9c6d95c8389f6180c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "9b99eb9b7945f7077bdf6fa4f442ea5b93131dc8776a4e813c0d1e2169eb7d6b"
|
||||
}
|
||||
},
|
||||
"1.1.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "32f55ea92e959fbd6daf9dff4e01d458d4d6cbdce8ff6f483f9a21d282248416"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "b3c6deb2cc7353f0c8df136118fbe010f5eace4409f2509fac84d96c3ff411cc"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "c3cd060cd191b2a8801067bb7e58c127f80abb15b142d8fc5ebaef42cec4df13"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "95fc1cee46859c71bfad7015ab0465c063060bf5ba4e37f76e2abef9f3dc9fcf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "3c57c58e81bb9e2917bd1d75157ff120380fcf4a9c890c9de55060bc5f746508"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "6c6245c3b22d21a3abb2e108a3cd9c55c18634c3362c7da49c33d1247d63da30"
|
||||
}
|
||||
},
|
||||
"1.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "58cf2e55a1ba1a2262a97df29ca6811e2d08a959086c83e3b34ba77357f05e4b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "0d307f0b0c1ae1b613325ebb1ce65e52ea6a76ecbb218121cfc4a884c5929603"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "7ab923986e81012105043da18eb3cc1b4b2628d78c67f585d29f4cceb4753733"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "0102623e8bc8922bfa616ef52704875fee6f66354ed57b602721d8a1476c1573"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "581bd8eea35221128c72973a26a7163b04a50270a9aee564fbec1fe42d777f07"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "def514c24e7752911070adc77ebac318c9b9b5484f6350ec0b7be6d75d321ad1"
|
||||
}
|
||||
},
|
||||
"1.0": {
|
||||
"version": "1.0.0"
|
||||
},
|
||||
"1.0.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "ef855010b9cbeb635bae4b25815fb82795578073c7fabb2368898938001d21b4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "acac1b940186ea8cb45c6a7396e518b7dc747f9f4678e7206242991c6223bab1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "38998de19ff4116d3f6614a26e5aae26f2100fcc38ce5ae0135e6951ef5e6a4c"
|
||||
}
|
||||
},
|
||||
"0.10": {
|
||||
"version": "0.10.0"
|
||||
},
|
||||
"0.10.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "116b07c0989dddbb6535d24ebb5ccfec690cce0edde76eef36c514d1ae8159a0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "4370aee41f417b61fba7d226556ee02e27ea343b8bec1ef721e919fbc4410ab7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "da1f1fad0e24f9bfad810317357c2cd42a61b9f17d11eeff822b12afccda9213"
|
||||
}
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.2"
|
||||
},
|
||||
"0.9.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "9936ebc62c220cd644566f04810db9a648b4d31b5e67e5cce61ae4b49de9d073"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "d6be4b10ad5e45885e7cd3c1f5a5cbc13d50052c237d1f1ee82e26e2405e8b1c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "1fb43d35e9e08fd55c1a49f625c56403a6a6fe7db1147ac7aed4b3fb2046f0c4"
|
||||
}
|
||||
},
|
||||
"0.9.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "570d70bfba95fd9c3ad639fd8f77f0bb4a086adb648cba12e511705b75bab0b6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "f027b31431edb6f3597012c587a7eee9dea07c55593b492553b2ebbadf85b249"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "76dc7749b6f9dda978f2e33e83263ffd6fbab995d5640ff85ada77304c49df0a"
|
||||
}
|
||||
},
|
||||
"0.9.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "d59854a93b7eabdaa49014a91b41bc63506943542634bfb8ae6537fb4fea8cb2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "36f2b0dd9d5345cf54b47adec288305afb4915221957cacdac6f266780adb5b3"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "afb6961b4096825fcf9eadea19b7d88fd53368345076422d55a5cad4fab0f89a"
|
||||
}
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.1"
|
||||
},
|
||||
"0.8.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "202bfdc6f4e07484c5e45666936ed3cb878f860b91c3c32d4391fdef0f23c831"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "6635348a949a76c24af9a35a1cf082cdab431ff1dc602d303d841bd39e12c992"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "e555c69240f444a51cf49355dccb6d71543962a75b4022c9e8d64b17d786da10"
|
||||
}
|
||||
},
|
||||
"0.7": {
|
||||
"version": "0.7.0"
|
||||
},
|
||||
"0.7.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "0907b95480d15100ccd1cacdd47729258fcde0d67d317a8e34b7402fb152454e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "695a2178446e775ca0b7e6d4bc9ea3903800f03f6d45985ab015837ecd59cea2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "af87514826ae32f8f0db55d580a9b48f59f0e5834d232bbb7dec5bd401c816c0"
|
||||
}
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.1"
|
||||
},
|
||||
"0.6.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "dd11951ab6724b040df359e0461ba2cb6a7310a0d6e42eb25aa2b6fde45c1ce9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "b29f16ff20f30fe4f12c691572ada100cab6d47c1c7762b2e142d0be84b41b5a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "bfc47c94f015517dd7de015c11ef2d36c57fec3217ca00b0f5a7cda81cb60109"
|
||||
}
|
||||
},
|
||||
"0.6.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "ba978fcf7b03b4f8d578258f54d8dc3cdd3ac42a1daf1fe53ac67e5e597b035b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "ed35196f5beccf2458d8edbf394575ff7d5e98a4fdb21073493229cc04bbf585"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "9380518a867eb24c4f660854bc693a3990a9125238fac646ece5ef527c69b102"
|
||||
}
|
||||
},
|
||||
"0.5": {
|
||||
"version": "0.5.0"
|
||||
},
|
||||
"0.5.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "899f6544c6a6249e232d385def6361d90d46137533f736df375a875e21f31be6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "251c848f7c74e91350861390f2b4d2880bc9570ff8ef12b1d0c8421b99d53104"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "b7272791f5e6de04d8581811abea4f901ad7ad34867048545491f8b8a3cbab68"
|
||||
}
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.2"
|
||||
},
|
||||
"0.4.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "8389ab46f82cfad4692b81730c7a77fff9061ce5f81784c2f33c910e849b6524"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "bfa10850ab67bfa1fbc786a5633e824539c9d7040797bfb70f37687ab662e88b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "e40278d9f780c335dffa01d1134a1bb3be5b2bfb6a130d5f77778c8a57a4110f"
|
||||
}
|
||||
},
|
||||
"0.4.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "a8f63328b3bf18d34c67e952561e42493c555c672bfcee74a510fb3959751244"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "37d87460b938b0afeafed0737493b6452cfecff6d73eafc67eac8ae5a159fc60"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "3d3506230d007d1fce40fa007730e9d7e17c2619c5cbc131b6870c1dc22e448e"
|
||||
}
|
||||
},
|
||||
"0.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "d3e2f96f98500dd37bf216ce8af616b1fd0bb6f6ab0870e8abccdc0c1c5f5967"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "3bca497a0b09083f729401285aa0ef519d9d146f55edb90ed0530a8270b8bd46"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "8c98d2ac3e4a52ec4a875d210b9c6d7ea6504716d66aa62417a5b504aad6ebea"
|
||||
}
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.0"
|
||||
},
|
||||
"0.3.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "48df1a40ec5bd4372c966596dfdfb1f38d7bd200890570994729cd61879ae8d2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "eaa751d4f671f1015d01e09b9f6bd6d81f014b435f67c1d1a341007e2c6a79c6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "361c0a9651e2a0e89294a07d4433977dccf9c6c058ddf2b63ef762deb9866e01"
|
||||
}
|
||||
},
|
||||
"0.2": {
|
||||
"version": "0.2.6"
|
||||
},
|
||||
"0.2.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "4c692aada1bed60ddbf55dfbc07346e0f821fd94ca93c7a74612ace6dcb9a7f8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "f2a932feecbb93635d2a55451f058f2a8012527828ad223c04a0ac08d11f49bb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "d9171c4380307d4a9dc5dc97ac158798234ce35a0939be9a70297193d36b082c"
|
||||
}
|
||||
},
|
||||
"0.2.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "3d9484eebdc9af0396569e49804c9aed3ea9a206c00a5dd2ec7aa08550a5498b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "910b9db46e62a808b9e5b27b13cd76ee60dc965c7bbdc2b8b0ae23065162a8a5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "e69b25444520c8a5958762bd17c706182db7786b4ac238f486ba988cb76be490"
|
||||
}
|
||||
},
|
||||
"0.2.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "8f813425978ca6a4e054f0276917cb2acd1a45efae7503709ba2438bfc433624"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "19adab2ed658792dda0648cae0572897a0ce75dea703df31292eccf3d0f1364e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "de54ac99d7abdff890afdff4f59179d94289ada3556f2dd3227d0f691195b162"
|
||||
}
|
||||
},
|
||||
"0.2.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "59d4ef9c9a1a48e9850b35317ca271366fdcee21630011d5241aacd34b35e001"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "195b95c853c58a677923b5534df887b30de831c99cc977f48adec49345a1a219"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "50a0bcb7e7600defed3e12511290d79161c2db89d25b5a9a290fe5c313c29b23"
|
||||
}
|
||||
},
|
||||
"0.2.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "3c3def4f6fdaceffe33a7c7007c0a5eaa0992228c3a832b1f9a109c7c7c6386d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "0cc6e3c682d547309fef7ea677695608638f7d51cf43e121cce428001811f590"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "3963391f541b7ee9c66d86cffeaa2ce13b5b97bf337038317df14f12a0e21a7f"
|
||||
}
|
||||
},
|
||||
"0.2.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "554b4abe0fe55258ef47e24b6fe5032c68b62c690f77216ea6a649d1f29c9a23"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "85017458dcbc33558a7e829f1232e5ad23da3245d880b5a9fadd327449f2e145"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "69a3afee646fe1833f8b8555290096b21aaeacef6108864da9f7d11017791c51"
|
||||
}
|
||||
},
|
||||
"0.2.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "9cdb59382faa8e3fa1562ef1788fd55c092c1fd2e0a7a83ac7926da4d7668a29"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "e4845a07bddd6e8e59c2a5e7a1d3ef92b5e10bf2c82926b6ff4a6fe344698e5d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "e512cfdfa4a5246a3381a39a7395e302258ab3ae5110d82da74204779fcc504b"
|
||||
}
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.2"
|
||||
},
|
||||
"0.1.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "5a518008ddf3bf8b043a211c4a493eea9ab1faa7f25c49c3c9fd97708782bafc"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "8811ef747f77526b0f4ccb9553019b5f7781d9da1c5e2d20d7f0e933c3a80046"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "58cad1b7758aa9d426ddf85c843f77e9cfa210bdf8323941ee2fd0f70cf136f7"
|
||||
}
|
||||
},
|
||||
"0.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "bb956271fde5aeeed83f72b46f717b7c606289d073cfa0f56bb233c9db32e3ce"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "589d6a7248824a4be55c03bfc2378577bac23ad67e083f2d4e1c9b0ff87b887b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "48de883ccc656ce3f9f86b85f63e3974a48d93f73ba0c38726f1f2546a8f84d8"
|
||||
}
|
||||
}
|
||||
}
|
||||
46
manifests/just.json
generated
46
manifests/just.json
generated
@@ -18,10 +18,52 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.24.0"
|
||||
"version": "1.25.2"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.24.0"
|
||||
"version": "1.25.2"
|
||||
},
|
||||
"1.25": {
|
||||
"version": "1.25.2"
|
||||
},
|
||||
"1.25.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "ad56bf1a804243b51ef2c2eec4b3a8177f970ccc414cbbee219c2e5c06f7bcc9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "f34de579d82b09d58e9a55759166d7d5642bc34893e0b3d53d2ca3f7e841d1cb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "9108b612b674381b6baf667a06b1c8f870b2d6ac4fcb9c4eef53c0866a6ce8f4"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "049d624255d150f18b0f3a1257a163366b0dc22e16526214773903125145e515"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "71d3538b0ebcb21fba84c278a86fc6718dc5d01c38162ffd8bed2e66ead4daac"
|
||||
}
|
||||
},
|
||||
"1.25.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "84c638108f84144c82507a83e4611afa1a86f55b51e14a7a9056235640c56013"
|
||||
}
|
||||
},
|
||||
"1.25.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "1eeda5d8b319ce7868ee43748687f849e5a9ec2d03f64e0ebeda05af08f67af4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "fbf2ef5ab53470c9fbce7f76b87008145addea90671148850e01ac204e3b461b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "76a99c45395ccae0c2e8d95886c7059fde8f2f6cb25c697f55fd9252fe4930ea"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "c73a41acce0f0913405e33009d60645824576a1177039bed9c7575f4c153eb0f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "cbea371d2e15e94b33f3097eaf0ec97906c7b41ed81cf2d7d3ca972f1774f3ea"
|
||||
}
|
||||
},
|
||||
"1.24": {
|
||||
"version": "1.24.0"
|
||||
|
||||
51
manifests/protoc.json
generated
51
manifests/protoc.json
generated
@@ -2,10 +2,57 @@
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "3.25.3"
|
||||
"version": "3.26.1"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.25.3"
|
||||
"version": "3.26.1"
|
||||
},
|
||||
"3.26": {
|
||||
"version": "3.26.1"
|
||||
},
|
||||
"3.26.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.1/protoc-26.1-linux-x86_64.zip",
|
||||
"checksum": "a7be2928c0454f132c599e25b79b7ad1b57663f2337d7f7e468a1d59b98ec1b0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.1/protoc-26.1-osx-x86_64.zip",
|
||||
"checksum": "febd8821c3a2a23f72f4641471e0ab6486f4fb07b68111490a27a31681465b3c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.1/protoc-26.1-win64.zip",
|
||||
"checksum": "9090d135a1159042b13b4e51b210e40cb820d85a5032a6eca5f9b3ca3bdfb539"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.1/protoc-26.1-linux-aarch_64.zip",
|
||||
"checksum": "64a3b3b5f7dac0c8f9cf1cb85b2b1a237eb628644f6bcb0fb8f23db6e0d66181"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.1/protoc-26.1-osx-aarch_64.zip",
|
||||
"checksum": "26a29befa8891ecc48809958c909d284f2b9539a2eb47f22cadc631fe6abe8fd"
|
||||
}
|
||||
},
|
||||
"3.26.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.0/protoc-26.0-linux-x86_64.zip",
|
||||
"checksum": "3ed20f841fd9cb7a8344dd4158f6fcb67d333c8206b33a7dbb899bcbc08d92eb"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.0/protoc-26.0-osx-x86_64.zip",
|
||||
"checksum": "2624286cf7787c5b75af68d7766fe62bf92f459f1ee77f9a9a8cdae63bd285d1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.0/protoc-26.0-win64.zip",
|
||||
"checksum": "f5a0e21c09e823fe5cc18d6057f8db7a3d5df420c09314d548b9139c4193156d"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.0/protoc-26.0-linux-aarch_64.zip",
|
||||
"checksum": "556e4f77fd3a04c0b31e3560540241e86ec576d447733f19a3f9c056724e9b03"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v26.0/protoc-26.0-osx-aarch_64.zip",
|
||||
"checksum": "218537fbdbd0054b516a346b89892a48626cb08bb8351c8d771c1545fd80c7c1"
|
||||
}
|
||||
},
|
||||
"3.25": {
|
||||
"version": "3.25.3"
|
||||
|
||||
19
manifests/shellcheck.json
generated
19
manifests/shellcheck.json
generated
@@ -19,7 +19,24 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.9.0"
|
||||
"version": "0.10.0"
|
||||
},
|
||||
"0.10": {
|
||||
"version": "0.10.0"
|
||||
},
|
||||
"0.10.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "ef27684f23279d112d8ad84e0823642e43f838993bbb8c0963db9b58a90464c2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "eb6cd53a54ea97a56540e9d296ce7e2fa68715aa507ff23574646c1e12b2e143"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "324a7e89de8fa2aed0d0c28f3dab59cf84c6d74264022c00c22af665ed1a09bb"
|
||||
}
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.0"
|
||||
|
||||
43
manifests/syft.json
generated
43
manifests/syft.json
generated
@@ -23,13 +23,50 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.0.0"
|
||||
"version": "1.1.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.0.0"
|
||||
"version": "1.1.0"
|
||||
},
|
||||
"1.1": {
|
||||
"version": "1.1.0"
|
||||
},
|
||||
"1.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "ff13f54ffbddc2e1426f79e03ba622eefd37f9309050c846d2505c09042e079b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "de1182094a6267c231ed4d126a7adcd02ec0b590785bd1f8feb143b2f0d4f489"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "871f068d62fae178d65922ad5902101523d39701ee626646aedf9e4dc61fcc33"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "4e3c5c0bd9c51cbe8e57f8eca77a1ac56e4c2ff3118746365bd1838cb49c39b1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "f51ccc4f172e9ec70a924e892969562f8ad556cdb6b39925a5ee846bdc26c80d"
|
||||
}
|
||||
},
|
||||
"1.0": {
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.1"
|
||||
},
|
||||
"1.0.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "420f90e57def27745e414efcb7a41384b2ccdccafca87c327096ca44621ab0ce"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "3730868e23a65c0c2b94bd1d3c7ce608176aa98b631bf98249f04bec1a035b12"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "95bc151e3a713a31f7ae7bfacbe0bda8c8d8e08e390038b0c2fc7220c1b9c49c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "c8582aa0e1c92c84c4a751c739ac3d7ca48c88a54b5d1b884d0629d7df72a6f9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "5dc061290afb7e8249dc590fcf4a7e15966346e73948415559855e1154fc0f42"
|
||||
}
|
||||
},
|
||||
"1.0.0": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
1715
manifests/typos.json
generated
Normal file
1715
manifests/typos.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
66
manifests/wasmtime.json
generated
66
manifests/wasmtime.json
generated
@@ -2,13 +2,73 @@
|
||||
"rust_crate": "wasmtime-cli",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "18.0.2"
|
||||
"version": "19.0.0"
|
||||
},
|
||||
"19": {
|
||||
"version": "19.0.0"
|
||||
},
|
||||
"19.0": {
|
||||
"version": "19.0.0"
|
||||
},
|
||||
"19.0.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v19.0.0/wasmtime-v19.0.0-x86_64-linux.tar.xz",
|
||||
"checksum": "9b22a1847ab493e18771d4a7a992ffd02729a83309b9b8526e87c65d65d262a4",
|
||||
"bin": "wasmtime-v19.0.0-x86_64-linux/wasmtime"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v19.0.0/wasmtime-v19.0.0-x86_64-macos.tar.xz",
|
||||
"checksum": "a1e21e8a9a0aaee42b05aace5891962d2b0c350d4bb19c7bef001bde63d5b2c5",
|
||||
"bin": "wasmtime-v19.0.0-x86_64-macos/wasmtime"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v19.0.0/wasmtime-v19.0.0-x86_64-windows.zip",
|
||||
"checksum": "371b23b52b4f4ba8be1524d5ad666c6383c9c30c0365ae66ac404196409731d6",
|
||||
"bin": "wasmtime-v19.0.0-x86_64-windows/wasmtime.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v19.0.0/wasmtime-v19.0.0-aarch64-linux.tar.xz",
|
||||
"checksum": "f37c4af2e66177641627b2fcd419eba9f68daa1bc4e2062561af26d6a541f6f9",
|
||||
"bin": "wasmtime-v19.0.0-aarch64-linux/wasmtime"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v19.0.0/wasmtime-v19.0.0-aarch64-macos.tar.xz",
|
||||
"checksum": "bb566cad203eb3dc1942985574223258007a2f5099fdf2971a0a2fc6744c0643",
|
||||
"bin": "wasmtime-v19.0.0-aarch64-macos/wasmtime"
|
||||
}
|
||||
},
|
||||
"18": {
|
||||
"version": "18.0.2"
|
||||
"version": "18.0.3"
|
||||
},
|
||||
"18.0": {
|
||||
"version": "18.0.2"
|
||||
"version": "18.0.3"
|
||||
},
|
||||
"18.0.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v18.0.3/wasmtime-v18.0.3-x86_64-linux.tar.xz",
|
||||
"checksum": "1252dbd077fcdfc54da17a45860dc90c558f7f4d9301143bec9f59ce548301d8",
|
||||
"bin": "wasmtime-v18.0.3-x86_64-linux/wasmtime"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v18.0.3/wasmtime-v18.0.3-x86_64-macos.tar.xz",
|
||||
"checksum": "b322a75579ee4bb911caf8046050f9f324918891016d07b71f4b9ec17ee8368a",
|
||||
"bin": "wasmtime-v18.0.3-x86_64-macos/wasmtime"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v18.0.3/wasmtime-v18.0.3-x86_64-windows.zip",
|
||||
"checksum": "63bd449deffa234714acf9c25dcb146590dbcf52ed6046a253d18d002f25ce30",
|
||||
"bin": "wasmtime-v18.0.3-x86_64-windows/wasmtime.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v18.0.3/wasmtime-v18.0.3-aarch64-linux.tar.xz",
|
||||
"checksum": "6f2cf8edb9a651adda57de7e64f78e621e6dca14f102ac202f263fb2f7de28f0",
|
||||
"bin": "wasmtime-v18.0.3-aarch64-linux/wasmtime"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/bytecodealliance/wasmtime/releases/download/v18.0.3/wasmtime-v18.0.3-aarch64-macos.tar.xz",
|
||||
"checksum": "ae5e1b5107c85cef66ec6e2bfca8511e56a6b42c237feffe74c31fb30a380d38",
|
||||
"bin": "wasmtime-v18.0.3-aarch64-macos/wasmtime"
|
||||
}
|
||||
},
|
||||
"18.0.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
|
||||
@@ -6,6 +6,8 @@ cd "$(dirname "$0")"/../..
|
||||
|
||||
# They don't provide prebuilt binaries for musl or old glibc host.
|
||||
glibc_pre_2_34_incompat=(
|
||||
cargo-cyclonedx
|
||||
cargo-spellcheck
|
||||
xbuild
|
||||
)
|
||||
glibc_pre_2_31_incompat=(
|
||||
|
||||
17
tools/codegen/base/cargo-cyclonedx.json
Normal file
17
tools/codegen/base/cargo-cyclonedx.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"repository": "https://github.com/CycloneDX/cyclonedx-rust-cargo",
|
||||
"tag_prefix": "cargo-cyclonedx-",
|
||||
"rust_crate": "${package}",
|
||||
"version_range": ">= 0.5.0",
|
||||
"platform": {
|
||||
"x86_64_macos": {
|
||||
"asset_name": "${package}-Darwin-x86_64.tar.gz"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"asset_name": "${package}-Win-x86_64.zip"
|
||||
},
|
||||
"x86_64_linux_gnu": {
|
||||
"asset_name": "${package}-linux-amd64.tar.gz"
|
||||
}
|
||||
}
|
||||
}
|
||||
13
tools/codegen/base/cargo-spellcheck.json
Normal file
13
tools/codegen/base/cargo-spellcheck.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"repository": "https://github.com/drahnr/cargo-spellcheck",
|
||||
"tag_prefix": "v",
|
||||
"rust_crate": "${package}",
|
||||
"asset_name": "${package}-v${version}-${rust_target}",
|
||||
"version_range": ">= 0.13",
|
||||
"platform": {
|
||||
"x86_64_windows": {
|
||||
"asset_name": "${package}-v${version}-x86_64-pc-windows-gnu.exe"
|
||||
},
|
||||
"x86_64_linux_gnu": {}
|
||||
}
|
||||
}
|
||||
20
tools/codegen/base/git-cliff.json
Normal file
20
tools/codegen/base/git-cliff.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"repository": "https://github.com/orhun/git-cliff",
|
||||
"tag_prefix": "v",
|
||||
"rust_crate": "${package}",
|
||||
"asset_name": "${package}-${version}-${rust_target}.tar.gz",
|
||||
"broken": ["0.1.1"],
|
||||
"bin": "${package}-${version}/${package}${exe}",
|
||||
"platform": {
|
||||
"x86_64_linux_musl": {},
|
||||
"x86_64_macos": {},
|
||||
"x86_64_windows": {
|
||||
"asset_name": "${package}-${version}-${rust_target}.zip"
|
||||
},
|
||||
"aarch64_linux_musl": {},
|
||||
"aarch64_macos": {},
|
||||
"aarch64_windows": {
|
||||
"asset_name": "${package}-${version}-${rust_target}.zip"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
"repository": "https://github.com/casey/just",
|
||||
"tag_prefix": "",
|
||||
"rust_crate": "${package}",
|
||||
"broken": ["1.25.1"],
|
||||
"asset_name": "${package}-${version}-${rust_target}.tar.gz",
|
||||
"platform": {
|
||||
"x86_64_linux_musl": {},
|
||||
|
||||
15
tools/codegen/base/typos.json
Normal file
15
tools/codegen/base/typos.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"repository": "https://github.com/crate-ci/typos",
|
||||
"tag_prefix": "v",
|
||||
"rust_crate": "${package}-cli",
|
||||
"asset_name": "${package}-v${version}-${rust_target}.tar.gz",
|
||||
"version_range": ">= 1.0.0",
|
||||
"platform": {
|
||||
"x86_64_linux_musl": {},
|
||||
"x86_64_macos": {},
|
||||
"x86_64_windows": {
|
||||
"asset_name": "${package}-v${version}-${rust_target}.zip"
|
||||
},
|
||||
"aarch64_macos": {}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
use std::{
|
||||
cmp::Reverse,
|
||||
cmp::{self, Reverse},
|
||||
collections::{BTreeMap, BTreeSet},
|
||||
env,
|
||||
ffi::OsStr,
|
||||
@@ -417,6 +417,7 @@ fn main() -> Result<()> {
|
||||
.values()
|
||||
.any(|m| matches!(m, ManifestRef::Real(m) if m.download_info.contains_key(&p)))
|
||||
{
|
||||
// TODO: better error message: https://github.com/taiki-e/install-action/pull/411
|
||||
bail!(
|
||||
"platform list in base manifest for {package} contains {p:?}, \
|
||||
but result manifest doesn't contain it; \
|
||||
@@ -603,12 +604,12 @@ impl From<semver::Version> for Version {
|
||||
}
|
||||
}
|
||||
impl PartialOrd for Version {
|
||||
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
|
||||
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
|
||||
Some(self.cmp(other))
|
||||
}
|
||||
}
|
||||
impl Ord for Version {
|
||||
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
|
||||
fn cmp(&self, other: &Self) -> cmp::Ordering {
|
||||
fn convert(v: &Version) -> semver::Version {
|
||||
semver::Version {
|
||||
major: v.major.unwrap_or(u64::MAX),
|
||||
@@ -754,12 +755,16 @@ struct BaseManifest {
|
||||
}
|
||||
impl BaseManifest {
|
||||
fn validate(&self) {
|
||||
if let Some(bin) = &self.bin {
|
||||
for bin in self.bin.iter().chain(self.platform.values().flat_map(|m| &m.bin)) {
|
||||
assert!(!bin.as_slice().is_empty());
|
||||
}
|
||||
for m in self.platform.values() {
|
||||
if let Some(bin) = &m.bin {
|
||||
assert!(!bin.as_slice().is_empty());
|
||||
for bin in bin.as_slice() {
|
||||
let file_name = Path::new(bin).file_name().unwrap().to_str().unwrap();
|
||||
if !self.repository.ends_with("/xbuild") {
|
||||
assert!(
|
||||
!(file_name.contains("${version") || file_name.contains("${rust")),
|
||||
"{bin}"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user