Compare commits

...

12 Commits

Author SHA1 Message Date
Taiki Endo
a162d2b731 Release 0.3.0 2026-04-15 13:51:59 +00:00
Taiki Endo
9103fd9c70 manifest-schema: Add missing annotation in Cargo.toml for release
workflow
2026-04-15 22:49:15 +09:00
Taiki Endo
2eba5a84f1 Update mise manifest 2026-04-15 13:44:17 +00:00
Taiki Endo
61e686bbe6 Update cargo-deny manifest 2026-04-15 13:44:17 +00:00
Taiki Endo
0cc19d4b74 codegen: Remove flaky license auto-detection 2026-04-15 22:25:36 +09:00
Taiki Endo
2ed84e4b1e Reduce sed usage 2026-04-15 21:24:40 +09:00
Taiki Endo
6fc852a7b2 Remove dirname usage 2026-04-15 21:04:29 +09:00
Taiki Endo
ff735c627f Update cargo-deny@latest to 0.19.2 2026-04-15 09:52:56 +00:00
Taiki Endo
eea29cff9a Release 2.75.13 2026-04-15 00:41:08 +00:00
Taiki Endo
81e9b0b0b3 Update cargo-nextest manifest 2026-04-14 21:34:42 +00:00
Taiki Endo
b2022afd58 Update zizmor@latest to 1.24.1 2026-04-14 18:45:55 +00:00
Taiki Endo
98e5a22802 Update biome manifest 2026-04-14 18:45:55 +00:00
171 changed files with 237 additions and 370 deletions

View File

@@ -10,6 +10,16 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
- Implement potential workaround for [windows-11-arm runner bug](https://github.com/actions/partner-runner-images/issues/169) which sometimes causes installation failure.
The issue where this bug affected the startup of bash was addressed in 2.71.2, but we received a report that the same problem seems to occur when starting other commands as well.
- Update `cargo-deny@latest` to 0.19.2.
## [2.75.13] - 2026-04-15
- Update `zizmor@latest` to 1.24.1.
## [2.75.12] - 2026-04-14
- Update `typos@latest` to 1.45.1.
@@ -6257,7 +6267,8 @@ Note: This release is considered a breaking change because installing on version
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.12...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.13...HEAD
[2.75.13]: https://github.com/taiki-e/install-action/compare/v2.75.12...v2.75.13
[2.75.12]: https://github.com/taiki-e/install-action/compare/v2.75.11...v2.75.12
[2.75.11]: https://github.com/taiki-e/install-action/compare/v2.75.10...v2.75.11
[2.75.10]: https://github.com/taiki-e/install-action/compare/v2.75.9...v2.75.10

View File

@@ -57,7 +57,7 @@ runs:
for ($i=1; $i -le 10; $i++) {
$prev_err_action = $ErrorActionPreference
$ErrorActionPreference = "Continue"
& bash --noprofile --norc "$env:GITHUB_ACTION_PATH/main.sh"
& bash --noprofile --norc "$env:GITHUB_ACTION_PATH\main.sh"
$code = $LASTEXITCODE
$ErrorActionPreference = "$prev_err_action"
if (Test-Path "$env:USERPROFILE\.install-action\init") {

20
main.sh
View File

@@ -464,7 +464,8 @@ case "$(uname -s)" in
host_env=musl
else
host_env=gnu
host_glibc_version=$(grep -E "GLIBC|GNU libc" <<<"${ldd_version}" | sed -E "s/.* //g")
host_glibc_version=$(grep -E "GLIBC|GNU libc" <<<"${ldd_version}")
host_glibc_version="${host_glibc_version##* }"
fi
if [[ -e /etc/redhat-release ]]; then
# /etc/os-release is available on RHEL/CentOS 7+
@@ -563,6 +564,7 @@ fi
install_action_dir="${home}/.install-action"
tmp_dir="${install_action_dir}/tmp"
cargo_bin="${CARGO_HOME:-"${home}/.cargo"}/bin"
cargo_path=$(type -P cargo || true)
# If $CARGO_HOME does not exist, or cargo installed outside of $CARGO_HOME/bin
# is used ($CARGO_HOME/bin is most likely not included in the PATH), fallback to
# $install_action_dir/bin.
@@ -570,15 +572,15 @@ if [[ "${host_os}" == "windows" ]]; then
mkdir -p -- "${install_action_dir}"
# See action.yml.
touch -- "${install_action_dir}"/init
if type -P cargo >/dev/null; then
info "cargo is located at $(type -P cargo)"
cargo_bin=$(dirname -- "$(type -P cargo)")
if [[ -n "${cargo_path}" ]]; then
info "cargo is located at ${cargo_path}"
cargo_bin="${cargo_path%/*}"
else
cargo_bin="${install_action_dir}/bin"
fi
elif [[ ! -e "${cargo_bin}" ]] || [[ "$(type -P cargo || true)" != "${cargo_bin}/cargo"* ]]; then
if type -P cargo >/dev/null; then
info "cargo is located at $(type -P cargo)"
elif [[ ! -e "${cargo_bin}" ]] || [[ "${cargo_path}" != "${cargo_bin}/cargo"* ]]; then
if [[ -n "${cargo_path}" ]]; then
info "cargo is located at ${cargo_path}"
fi
# Moving files to /usr/local/bin requires sudo in some environments, so do not use it: https://github.com/taiki-e/install-action/issues/543
cargo_bin="${install_action_dir}/bin"
@@ -594,7 +596,7 @@ if [[ $# -gt 0 ]]; then
fi
export DEBIAN_FRONTEND=noninteractive
manifest_dir="$(dirname -- "$0")/manifests"
manifest_dir="${GITHUB_ACTION_PATH}/manifests"
# Inputs
tool="${INPUT_TOOL:-}"
@@ -987,7 +989,7 @@ if [[ ${#unsupported_tools[@]} -gt 0 ]]; then
cargo install "${cargo_args[@]}" "${tool}"
done
fi
if ! type -P cargo >/dev/null; then
if [[ -z "${cargo_path}" ]]; then
_bin_dir=$(canonicalize_windows_path "${home}/.cargo/bin")
# TODO: avoid this when already added
info "adding '${_bin_dir}' to PATH"

View File

@@ -26,7 +26,6 @@
"bin": "auto-doc.exe"
}
},
"license_markdown": "[Apache-2.0](https://github.com/tj-actions/auto-doc/blob/main/LICENSE)",
"latest": {
"version": "3.6.0"
},

39
manifests/biome.json generated
View File

@@ -1,7 +1,6 @@
{
"rust_crate": null,
"template": null,
"license_markdown": "[Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT)",
"latest": {
"version": "2.4.11"
},
@@ -11,6 +10,44 @@
"2.4": {
"version": "2.4.11"
},
"2.4.12": {
"x86_64_linux_musl": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.12/biome-linux-x64-musl",
"etag": "0x8DE9A52C9C67EE4",
"hash": "09acbdcd294e40e1f5c493e58f56f78cf2522c9d9b9f4609323c05689e8dc4bd",
"bin": "biome"
},
"x86_64_macos": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.12/biome-darwin-x64",
"etag": "0x8DE9A52C98D38A5",
"hash": "2617d939c0076743cbc597d9e1531628a0346eb19e6916f9374cb6e8f203fe3b",
"bin": "biome"
},
"x86_64_windows": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.12/biome-win32-x64.exe",
"etag": "0x8DE9A52CA29DA1D",
"hash": "bb4309a0c05caf7377fc071b770d503c5e052a45f8ddea3c9dca34890f202189",
"bin": "biome.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.12/biome-linux-arm64-musl",
"etag": "0x8DE9A52C937FE5A",
"hash": "8334e330fdc3eca2461928071704092b615831035108b1761386981262570f2c",
"bin": "biome"
},
"aarch64_macos": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.12/biome-darwin-arm64",
"etag": "0x8DE9A52C9684DEF",
"hash": "ac5775441d77af4ef9f61827e6058b2ec21db469102c94ccd9d1c48d09d5c461",
"bin": "biome"
},
"aarch64_windows": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.12/biome-win32-arm64.exe",
"etag": "0x8DE9A52C96CB5D0",
"hash": "df8552b36007c4339bda7d5328a5d41560f761fd24d53fffe31f58b171483b66",
"bin": "biome.exe"
}
},
"2.4.11": {
"x86_64_linux_musl": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.11/biome-linux-x64-musl",

View File

@@ -22,7 +22,6 @@
"bin": "cargo-audit-aarch64-apple-darwin-v${version}/cargo-audit"
}
},
"license_markdown": "[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)",
"latest": {
"version": "0.22.1"
},

View File

@@ -26,7 +26,6 @@
"bin": "cargo-auditable.exe"
}
},
"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.7.4"
},

View File

@@ -20,7 +20,6 @@
"url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v${version}/cargo-binstall-aarch64-pc-windows-msvc.zip"
}
},
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
"latest": {
"version": "1.18.1"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "cargo-careful",
"template": null,
"license_markdown": "[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)",
"latest": {
"version": "0.4.10"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "cargo-cyclonedx",
"template": null,
"license_markdown": "[Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE)",
"latest": {
"version": "0.5.9"
},

View File

@@ -14,7 +14,6 @@
"bin": "cargo-deadlinks"
}
},
"license_markdown": "[MIT](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-APACHE)",
"latest": {
"version": "0.8.1"
},

View File

@@ -6,7 +6,6 @@
"bin": "usr/bin/cargo-deb"
}
},
"license_markdown": "[MIT](https://github.com/kornelski/cargo-deb/blob/main/LICENSE)",
"latest": {
"version": "3.6.3"
},

View File

@@ -22,12 +22,33 @@
"bin": "cargo-deny-${version}-aarch64-apple-darwin/cargo-deny"
}
},
"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": {
"version": "0.19.1"
"version": "0.19.2"
},
"0.19": {
"version": "0.19.1"
"version": "0.19.2"
},
"0.19.4": {
"x86_64_linux_musl": {
"etag": "0x8DE9AED0DA16A3C",
"hash": "3bd58b784e83715b86ddbc9deac591890372ec77fda5741bb0826970b958506f"
},
"x86_64_macos": {
"etag": "0x8DE9AED0D025AC6",
"hash": "90fb22528daae11d0ce68cd968ea1f8e4d852b33510d0243d8c6666fc1dbea16"
},
"x86_64_windows": {
"etag": "0x8DE9AED3516701F",
"hash": "410b2f2bcb4d802dd8b018939156617ca290ac06554e95c35ab0a2bd07be2298"
},
"aarch64_linux_musl": {
"etag": "0x8DE9AED166EB210",
"hash": "c32ded194b38b48e0b44a838a0d85c856120801e1253fc7febf6f2e48ccb84d8"
},
"aarch64_macos": {
"etag": "0x8DE9AED0D9176A2",
"hash": "2437a51d904b29abe2d3aa9ea87e353c86cff108d519ba1e5fb495bb28e7fbaf"
}
},
"0.19.2": {
"x86_64_linux_musl": {

View File

@@ -10,7 +10,6 @@
"bin": "cargo-dinghy-${version}/cargo-dinghy"
}
},
"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": {
"version": "0.8.4"
},

View File

@@ -22,7 +22,6 @@
"bin": "cargo-export-v${version}-aarch64-apple-darwin/bin/cargo-export"
}
},
"license_markdown": "[MIT](https://github.com/bazhenov/cargo-export/blob/master/LICENSE)",
"latest": {
"version": "0.2.5"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "cargo-hack",
"template": null,
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-hack/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-hack/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.6.44"
},

View File

@@ -18,7 +18,6 @@
"bin": "cargo-insta-aarch64-apple-darwin/cargo-insta"
}
},
"license_markdown": "[Apache-2.0](https://github.com/mitsuhiko/insta/blob/master/LICENSE)",
"latest": {
"version": "1.47.2"
},

View File

@@ -18,7 +18,6 @@
"url": "https://github.com/cargo-lambda/cargo-lambda/releases/download/v${version}/cargo-lambda-v${version}.aarch64-apple-darwin.tar.gz"
}
},
"license_markdown": "[MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE)",
"latest": {
"version": "1.9.1"
},

View File

@@ -29,7 +29,6 @@
"url": "https://github.com/taiki-e/cargo-llvm-cov/releases/download/v${version}/cargo-llvm-cov-s390x-unknown-linux-gnu.tar.gz"
}
},
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.8.5"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "cargo-machete",
"template": null,
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
"latest": {
"version": "0.9.1"
},

View File

@@ -18,7 +18,6 @@
"bin": "cargo-make-v${version}-aarch64-apple-darwin/cargo-make"
}
},
"license_markdown": "[Apache-2.0](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE)",
"latest": {
"version": "0.37.24"
},

View File

@@ -29,7 +29,6 @@
"url": "https://github.com/taiki-e/cargo-minimal-versions/releases/download/v${version}/cargo-minimal-versions-s390x-unknown-linux-gnu.tar.gz"
}
},
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-minimal-versions/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-minimal-versions/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.1.37"
},

View File

@@ -22,7 +22,6 @@
"bin": "cargo-neat-${version}-aarch64-apple-darwin/cargo-neat"
}
},
"license_markdown": "[MIT](https://github.com/killzoner/cargo-neat/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/killzoner/cargo-neat/blob/master/LICENSE-APACHE)",
"latest": {
"version": "0.3.2"
},

View File

@@ -26,13 +26,47 @@
"url": "https://github.com/nextest-rs/nextest/releases/download/cargo-nextest-${version}/cargo-nextest-${version}-riscv64gc-unknown-linux-gnu.tar.gz"
}
},
"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": {
"version": "0.9.132"
},
"0.9": {
"version": "0.9.132"
},
"0.9.133": {
"previous_stable_version": "0.9.132",
"x86_64_linux_gnu": {
"etag": "0x8DE9A69A09A2C2E",
"hash": "a9f992321e8759818400d93abb9477b4b11422d18d216e8d208505bd73454103"
},
"x86_64_linux_musl": {
"etag": "0x8DE9A6A8E17A645",
"hash": "c42e03975841e4de3d7b80de39683a57f916532f349c1783f736bd55a9388d90"
},
"x86_64_macos": {
"etag": "0x8DE9A6A301F6420",
"hash": "6141b22cb71970aed9bd44bb21e31170755db94a469603760df327ebb219a109"
},
"x86_64_windows": {
"etag": "0x8DE9A6AD40CB8FE",
"hash": "7a2ecd620bb377255b1de642b6587b73efb4dc6d35beaf13cabf52bdb7ca2ba9"
},
"aarch64_linux_gnu": {
"etag": "0x8DE9A69FDAEB379",
"hash": "8e4d241c78f9cbf5ca8597b13004f0441c18af484ea105b8f83b44a716c82d3d"
},
"aarch64_linux_musl": {
"etag": "0x8DE9A69B4847E92",
"hash": "27495080ed27032e3bf019a50d2d72b7d85fe48c6391cf24de80d5157771049f"
},
"aarch64_windows": {
"etag": "0x8DE9A6AD91613C1",
"hash": "7a9b714bd5879db124e8d8a4e4e5959295345678456af61741a516d17f6e4a69"
},
"riscv64_linux_gnu": {
"etag": "0x8DE9A69A1E2EE1A",
"hash": "57146e41731792fd25efd9d8e20cd3854807bd7b73197deb7266920b3114ff09"
}
},
"0.9.132": {
"previous_stable_version": "0.9.131",
"x86_64_linux_gnu": {

View File

@@ -29,7 +29,6 @@
"url": "https://github.com/taiki-e/cargo-no-dev-deps/releases/download/v${version}/cargo-no-dev-deps-s390x-unknown-linux-gnu.tar.gz"
}
},
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-no-dev-deps/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-no-dev-deps/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.2.23"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "cargo-rdme",
"template": null,
"license_markdown": "[MPL-2.0](https://github.com/orium/cargo-rdme/blob/main/LICENSE.md)",
"latest": {
"version": "1.4.2"
},

View File

@@ -17,7 +17,6 @@
"url": "https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v${version}/cargo-semver-checks-aarch64-apple-darwin.tar.gz"
}
},
"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": {
"version": "0.47.0"
},

View File

@@ -26,7 +26,6 @@
"bin": "cargo-shear.exe"
}
},
"license_markdown": "[MIT](https://github.com/Boshen/cargo-shear/blob/main/LICENSE)",
"latest": {
"version": "1.11.2"
},

View File

@@ -14,7 +14,6 @@
"url": "https://github.com/DevinR528/cargo-sort/releases/download/v${version}/cargo-sort-aarch64-apple-darwin.tar.gz"
}
},
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/DevinR528/cargo-sort/blob/v1.0.9/Cargo.toml#L5)",
"latest": {
"version": "2.1.3"
},

View File

@@ -8,7 +8,6 @@
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-pc-windows-gnu.exe"
}
},
"license_markdown": "[LGPLv2.1](https://github.com/drahnr/cargo-spellcheck/blob/master/LICENSE-LGPL)",
"latest": {
"version": "0.15.1"
},

View File

@@ -17,7 +17,6 @@
"url": "https://github.com/xd009642/tarpaulin/releases/download/${version}/cargo-tarpaulin-aarch64-apple-darwin.tar.gz"
}
},
"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": {
"version": "0.35.2"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "cargo-udeps",
"template": null,
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
"latest": {
"version": "0.1.60"
},

View File

@@ -11,7 +11,6 @@
"url": "https://github.com/jfrimmel/cargo-valgrind/releases/download/${version}/cargo-valgrind-${version}-x86_64-pc-windows-msvc.zip"
}
},
"license_markdown": "[MIT](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-APACHE)",
"latest": {
"version": "2.4.1"
},

View File

@@ -14,7 +14,6 @@
"url": "https://github.com/rust-cross/cargo-xwin/releases/download/v${version}/cargo-xwin-v${version}.aarch64-unknown-linux-musl.tar.gz"
}
},
"license_markdown": "[MIT](https://github.com/rust-cross/cargo-xwin/blob/main/LICENSE)",
"latest": {
"version": "0.21.5"
},

View File

@@ -17,7 +17,6 @@
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v${version}/cargo-zigbuild-v${version}.windows-arm64.zip"
}
},
"license_markdown": "[MIT](https://github.com/rust-cross/cargo-zigbuild/blob/main/LICENSE)",
"latest": {
"version": "0.21.4"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "coreutils",
"template": null,
"license_markdown": "[MIT](https://github.com/uutils/coreutils/blob/main/LICENSE)",
"latest": {
"version": "0.6.0"
},

1
manifests/cosign.json generated
View File

@@ -26,7 +26,6 @@
"url": "https://github.com/sigstore/cosign/releases/download/v${version}/cosign-linux-s390x"
}
},
"license_markdown": "[Apache-2.0](https://github.com/sigstore/cosign/blob/main/LICENSE)",
"latest": {
"version": "3.0.6"
},

View File

@@ -18,7 +18,6 @@
"bin": "covgate-v${version}-aarch64-apple-darwin/covgate"
}
},
"license_markdown": "[Apache-2.0](https://github.com/jesse-black/covgate/blob/main/LICENSE)",
"latest": {
"version": "0.1.4"
},

1
manifests/cross.json generated
View File

@@ -1,7 +1,6 @@
{
"rust_crate": "cross",
"template": null,
"license_markdown": "[MIT](https://github.com/cross-rs/cross/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/cross-rs/cross/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.2.5"
},

View File

@@ -20,7 +20,6 @@
"url": "https://github.com/CycloneDX/cyclonedx-cli/releases/download/v${version}/cyclonedx-win-arm64.exe"
}
},
"license_markdown": "[Apache-2.0](https://github.com/CycloneDX/cyclonedx-cli/blob/main/LICENSE)",
"latest": {
"version": "0.30.0"
},

View File

@@ -17,7 +17,6 @@
"url": "https://github.com/DeepSourceCorp/cli/releases/download/v${version}/deepsource_${version}_darwin_arm64.tar.gz"
}
},
"license_markdown": "[BSD-2-Clause](https://github.com/DeepSourceCorp/cli/blob/master/LICENSE)",
"latest": {
"version": "0.10.1"
},

1
manifests/dprint.json generated
View File

@@ -26,7 +26,6 @@
"url": "https://github.com/dprint/dprint/releases/download/${version}/dprint-riscv64gc-unknown-linux-gnu.zip"
}
},
"license_markdown": "[MIT](https://github.com/dprint/dprint/blob/main/LICENSE)",
"latest": {
"version": "0.54.0"
},

View File

@@ -17,7 +17,6 @@
"url": "https://github.com/earthly/earthly/releases/download/v${version}/earthly-darwin-arm64"
}
},
"license_markdown": "[MPL-2.0](https://github.com/earthly/earthly/blob/main/LICENSE)",
"latest": {
"version": "0.8.16"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": null,
"template": null,
"license_markdown": "[MIT](https://github.com/editorconfig-checker/editorconfig-checker/blob/main/LICENSE)",
"latest": {
"version": "3.6.1"
},

1
manifests/espup.json generated
View File

@@ -17,7 +17,6 @@
"url": "https://github.com/esp-rs/espup/releases/download/v${version}/espup-aarch64-apple-darwin.zip"
}
},
"license_markdown": "[MIT](https://github.com/esp-rs/espup/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/esp-rs/espup/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.16.0"
},

View File

@@ -26,7 +26,6 @@
"bin": "git-cliff-${version}/git-cliff.exe"
}
},
"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": {
"version": "2.12.0"
},

1
manifests/grcov.json generated
View File

@@ -17,7 +17,6 @@
"url": "https://github.com/mozilla/grcov/releases/download/v${version}/grcov-aarch64-apple-darwin.tar.bz2"
}
},
"license_markdown": "[MPL-2.0](https://github.com/mozilla/grcov/blob/HEAD/LICENSE-MPL-2.0)",
"latest": {
"version": "0.10.7"
},

View File

@@ -22,7 +22,6 @@
"bin": "gungraun-runner-v${version}-s390x-unknown-linux-gnu/gungraun-runner"
}
},
"license_markdown": "[Apache-2.0](https://github.com/gungraun/gungraun/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/gungraun/gungraun/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.18.1"
},

View File

@@ -22,7 +22,6 @@
"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)",
"latest": {
"version": "1.20.0"
},

View File

@@ -22,7 +22,6 @@
"bin": "iai-callgrind-runner-v${version}-s390x-unknown-linux-gnu/iai-callgrind-runner"
}
},
"license_markdown": "[Apache-2.0](https://github.com/iai-callgrind/iai-callgrind/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/iai-callgrind/iai-callgrind/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.16.1"
},

1
manifests/jaq.json generated
View File

@@ -17,7 +17,6 @@
"url": "https://github.com/01mf02/jaq/releases/download/v${version}/jaq-v${version}-aarch64-apple-darwin"
}
},
"license_markdown": "[MIT](https://github.com/01mf02/jaq/blob/main/LICENSE-MIT)",
"latest": {
"version": "1.6.0"
},

1
manifests/just.json generated
View File

@@ -20,7 +20,6 @@
"url": "https://github.com/casey/just/releases/download/${version}/just-${version}-aarch64-pc-windows-msvc.zip"
}
},
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
"latest": {
"version": "1.49.0"
},

1
manifests/knope.json generated
View File

@@ -1,7 +1,6 @@
{
"rust_crate": "knope",
"template": null,
"license_markdown": "[MIT](https://github.com/knope-dev/knope/blob/main/LICENSE)",
"latest": {
"version": "0.22.4"
},

1
manifests/martin.json generated
View File

@@ -30,7 +30,6 @@
]
}
},
"license_markdown": "[MIT](https://github.com/maplibre/martin/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/maplibre/martin/blob/main/LICENSE-APACHE)",
"latest": {
"version": "1.5.0"
},

View File

@@ -17,7 +17,6 @@
"url": "https://github.com/lambdalisue/rs-mdbook-alerts/releases/download/v${version}/mdbook-alerts-aarch64-apple-darwin"
}
},
"license_markdown": "[MIT](https://github.com/lambdalisue/rs-mdbook-alerts/blob/main/LICENSE)",
"latest": {
"version": "0.8.0"
},

View File

@@ -11,7 +11,6 @@
"url": "https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v${version}/mdbook-linkcheck.x86_64-pc-windows-msvc.zip"
}
},
"license_markdown": "[MIT](https://github.com/Michael-F-Bryan/mdbook-linkcheck/blob/master/LICENSE)",
"latest": {
"version": "0.7.7"
},

View File

@@ -22,7 +22,6 @@
"bin": "mdbook-mermaid-ssr.exe"
}
},
"license_markdown": "[MPL-2.0](https://github.com/CommanderStorm/mdbook-mermaid-ssr/blob/main/LICENSE)",
"latest": {
"version": "0.3.0"
},

View File

@@ -22,7 +22,6 @@
"bin": "mdbook-mermaid"
}
},
"license_markdown": "[MPL-2.0](https://github.com/badboy/mdbook-mermaid/blob/main/LICENSE)",
"latest": {
"version": "0.17.0"
},

1
manifests/mdbook.json generated
View File

@@ -20,7 +20,6 @@
"url": "https://github.com/rust-lang/mdBook/releases/download/v${version}/mdbook-v${version}-aarch64-apple-darwin.tar.gz"
}
},
"license_markdown": "[MPL-2.0](https://github.com/rust-lang/mdBook/blob/master/LICENSE)",
"latest": {
"version": "0.5.2"
},

27
manifests/mise.json generated
View File

@@ -26,7 +26,6 @@
"bin": "mise/bin/mise.exe"
}
},
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
"latest": {
"version": "2026.4.11"
},
@@ -36,6 +35,32 @@
"2026.4": {
"version": "2026.4.11"
},
"2026.4.12": {
"x86_64_linux_musl": {
"etag": "0x8DE9AE39F878650",
"hash": "d99b8a27c124ce69cde304d75e848e02d2e0c76441f89120f91b90bd5f673dfb"
},
"x86_64_macos": {
"etag": "0x8DE9AE3A1EEF395",
"hash": "f7d9affbec7c40d5cae5f166ff8d495d1c6c2c9a06dee8099f2fed462f2c23b8"
},
"x86_64_windows": {
"etag": "0x8DE9AE3A339D526",
"hash": "b8d98096f2704cd6e892aaf5f413fe5778c52b7efc8de0eed57b2b8c799ba853"
},
"aarch64_linux_musl": {
"etag": "0x8DE9AE39BE61462",
"hash": "a00bce2fc7c14cfba7eca455813316de3efa2cea26410b0b416282406cd37ad6"
},
"aarch64_macos": {
"etag": "0x8DE9AE3A12FAF3E",
"hash": "2b81ec2acad3cc87b2d476804197ce42b90de3376595fd3d22bd9ff07147ca38"
},
"aarch64_windows": {
"etag": "0x8DE9AE3A2F59EEA",
"hash": "4ac3f279f284b1262344114043cda77caa0466d5ccf7e4e4ffdff524de5644ee"
}
},
"2026.4.11": {
"x86_64_linux_musl": {
"etag": "0x8DE99529B2B70CC",

View File

@@ -1,7 +1,6 @@
{
"rust_crate": null,
"template": null,
"license_markdown": "[Apache-2.0](https://github.com/google/osv-scanner/blob/main/LICENSE)",
"latest": {
"version": "2.3.5"
},

View File

@@ -1,7 +1,6 @@
{
"rust_crate": "parse-changelog",
"template": null,
"license_markdown": "[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)",
"latest": {
"version": "0.6.16"
},

View File

@@ -29,7 +29,6 @@
"url": "https://github.com/taiki-e/parse-dockerfile/releases/download/v${version}/parse-dockerfile-s390x-unknown-linux-gnu.tar.gz"
}
},
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/parse-dockerfile/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/parse-dockerfile/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.1.5"
},

1
manifests/prek.json generated
View File

@@ -38,7 +38,6 @@
"bin": "prek-s390x-unknown-linux-gnu/prek"
}
},
"license_markdown": "[MIT](https://github.com/j178/prek/blob/master/LICENSE)",
"latest": {
"version": "0.3.9"
},

1
manifests/protoc.json generated
View File

@@ -1,7 +1,6 @@
{
"rust_crate": null,
"template": null,
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
"latest": {
"version": "3.34.1"
},

1
manifests/rclone.json generated
View File

@@ -26,7 +26,6 @@
"bin": "rclone-v${version}-windows-arm64/rclone.exe"
}
},
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
"latest": {
"version": "1.73.4"
},

View File

@@ -20,7 +20,6 @@
"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/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.3.157"
},

View File

@@ -34,7 +34,6 @@
"bin": "sccache-v${version}-s390x-unknown-linux-musl/sccache"
}
},
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
"latest": {
"version": "0.14.0"
},

View File

@@ -26,7 +26,6 @@
"bin": "shellcheck-v${version}/shellcheck"
}
},
"license_markdown": "[GPL-3.0](https://github.com/koalaman/shellcheck/blob/master/LICENSE)",
"latest": {
"version": "0.11.0"
},

1
manifests/shfmt.json generated
View File

@@ -17,7 +17,6 @@
"url": "https://github.com/mvdan/sh/releases/download/v${version}/shfmt_v${version}_darwin_arm64"
}
},
"license_markdown": "[BSD-3-Clause](https://github.com/mvdan/sh/blob/master/LICENSE)",
"latest": {
"version": "3.13.1"
},

1
manifests/syft.json generated
View File

@@ -34,7 +34,6 @@
"bin": "syft"
}
},
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
"latest": {
"version": "1.42.4"
},

1
manifests/taplo.json generated
View File

@@ -30,7 +30,6 @@
"bin": "taplo"
}
},
"license_markdown": "[MIT](https://github.com/tamasfe/taplo/blob/master/LICENSE)",
"latest": {
"version": "0.10.0"
},

1
manifests/tombi.json generated
View File

@@ -20,7 +20,6 @@
"url": "https://github.com/tombi-toml/tombi/releases/download/v${version}/tombi-cli-${version}-aarch64-pc-windows-msvc.zip"
}
},
"license_markdown": "[MIT](https://github.com/tombi-toml/tombi/blob/main/LICENSE)",
"latest": {
"version": "0.9.17"
},

1
manifests/trivy.json generated
View File

@@ -30,7 +30,6 @@
"bin": "trivy"
}
},
"license_markdown": "[Apache-2.0](https://github.com/aquasecurity/trivy/blob/main/LICENSE)",
"latest": {
"version": "0.69.3"
},

1
manifests/trunk.json generated
View File

@@ -17,7 +17,6 @@
"url": "https://github.com/trunk-rs/trunk/releases/download/v${version}/trunk-aarch64-apple-darwin.tar.gz"
}
},
"license_markdown": "[MIT](https://github.com/trunk-rs/trunk/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/trunk-rs/trunk/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.21.14"
},

1
manifests/typos.json generated
View File

@@ -20,7 +20,6 @@
"url": "https://github.com/crate-ci/typos/releases/download/v${version}/typos-v${version}-aarch64-apple-darwin.tar.gz"
}
},
"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": {
"version": "1.45.1"
},

1
manifests/ubi.json generated
View File

@@ -38,7 +38,6 @@
"bin": "ubi"
}
},
"license_markdown": "[MIT](https://github.com/houseabsolute/ubi/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/houseabsolute/ubi/blob/master/LICENSE-APACHE)",
"latest": {
"version": "0.9.0"
},

1
manifests/uv.json generated
View File

@@ -67,7 +67,6 @@
]
}
},
"license_markdown": "[Apache-2.0](https://github.com/astral-sh/uv/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/astral-sh/uv/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.11.6"
},

1
manifests/vacuum.json generated
View File

@@ -20,7 +20,6 @@
"url": "https://github.com/daveshanley/vacuum/releases/download/v${version}/vacuum_${version}_windows_arm64.tar.gz"
}
},
"license_markdown": "[MIT](https://github.com/daveshanley/vacuum/blob/main/LICENSE)",
"latest": {
"version": "0.25.8"
},

View File

@@ -11,7 +11,6 @@
"url": "https://github.com/shenek/wait-for-them/releases/download/v${version}/wait-for-them-macos"
}
},
"license_markdown": "[GPL-3.0](https://github.com/shenek/wait-for-them/blob/v0.4.0/Cargo.toml#L7)",
"latest": {
"version": "0.5.1"
},

1
manifests/wash.json generated
View File

@@ -1,7 +1,6 @@
{
"rust_crate": "wash",
"template": null,
"license_markdown": "[Apache-2.0](https://github.com/wasmCloud/wasmCloud/blob/main/LICENSE)",
"latest": {
"version": "0.43.0"
},

View File

@@ -42,7 +42,6 @@
]
}
},
"license_markdown": "[MIT](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.2.118"
},

View File

@@ -22,7 +22,6 @@
"bin": "wasm-pack-v${version}-aarch64-apple-darwin/wasm-pack"
}
},
"license_markdown": "[MIT](https://github.com/drager/wasm-pack/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/drager/wasm-pack/blob/master/LICENSE-APACHE)",
"latest": {
"version": "0.14.0"
},

View File

@@ -22,7 +22,6 @@
"bin": "wasm-tools-${version}-aarch64-macos/wasm-tools"
}
},
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasm-tools/blob/main/LICENSE-APACHE) OR [Apache-2.0](https://github.com/bytecodealliance/wasm-tools/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/bytecodealliance/wasm-tools/blob/main/LICENSE-MIT)",
"latest": {
"version": "1.246.2"
},

View File

@@ -34,7 +34,6 @@
"bin": "wasmtime-v${version}-s390x-linux/wasmtime"
}
},
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
"latest": {
"version": "43.0.1"
},

1
manifests/xbuild.json generated
View File

@@ -14,7 +14,6 @@
"bin": "xbuild-windows-x64.exe"
}
},
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/rust-mobile/xbuild/blob/v0.2.0/xbuild/Cargo.toml#L7)",
"latest": {
"version": "0.2.0"
},

1
manifests/xh.json generated
View File

@@ -22,7 +22,6 @@
"bin": "xh-v${version}-aarch64-apple-darwin/xh"
}
},
"license_markdown": "[MIT](https://github.com/ducaale/xh/blob/master/LICENSE)",
"latest": {
"version": "0.25.3"
},

7
manifests/zizmor.json generated
View File

@@ -17,15 +17,14 @@
"url": "https://github.com/zizmorcore/zizmor/releases/download/v${version}/zizmor-aarch64-apple-darwin.tar.gz"
}
},
"license_markdown": "[MIT](https://github.com/zizmorcore/zizmor/blob/main/LICENSE)",
"latest": {
"version": "1.24.0"
"version": "1.24.1"
},
"1": {
"version": "1.24.0"
"version": "1.24.1"
},
"1.24": {
"version": "1.24.0"
"version": "1.24.1"
},
"1.24.1": {
"x86_64_linux_gnu": {

1
manifests/zola.json generated
View File

@@ -20,7 +20,6 @@
"url": "https://github.com/getzola/zola/releases/download/v${version}/zola-v${version}-aarch64-apple-darwin.tar.gz"
}
},
"license_markdown": "[MIT](https://github.com/getzola/zola/blob/master/LICENSE)",
"latest": {
"version": "0.22.1"
},

View File

@@ -72,7 +72,8 @@ case "$(uname -s)" in
if [[ "${ldd_version}" == *'musl'* ]]; then
incompat_tools+=("${musl_incompat[@]}")
else
host_glibc_version=$(grep -E "GLIBC|GNU libc" <<<"${ldd_version}" | sed "s/.* //g")
host_glibc_version=$(grep -E "GLIBC|GNU libc" <<<"${ldd_version}")
host_glibc_version="${host_glibc_version##* }"
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.39"$'\n'"${host_glibc_version}" | tail -1)
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.35"$'\n'"${host_glibc_version}" | tail -1)

View File

@@ -15,7 +15,6 @@ semver = { version = "1", features = ["serde"] }
serde = "1"
serde_derive = "1"
serde_json = "1"
spdx = "0.13"
tar = "0.4"
toml = { version = "1", default-features = false, features = ["parse", "serde"] }
# TODO: call curl command instead of using ureq?

View File

@@ -1,5 +1,6 @@
{
"repository": "https://github.com/tj-actions/auto-doc",
"license_markdown": "[Apache-2.0](https://github.com/tj-actions/auto-doc/blob/main/LICENSE)",
"tag_prefix": "v",
"bin": "${package}${exe}",
"version_range": ">= 3.0.0",

View File

@@ -1,7 +1,7 @@
{
"repository": "https://github.com/rustsec/rustsec",
"website": "https://github.com/rustsec/rustsec/tree/HEAD/cargo-audit",
"license_markdown": "[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)",
"license_markdown": "[Apache-2.0](https://github.com/rustsec/rustsec/blob/main/cargo-audit/LICENSE-APACHE) OR [MIT](https://github.com/rustsec/rustsec/blob/main/cargo-audit/LICENSE-MIT)",
"tag_prefix": "cargo-audit/v",
"rust_crate": "${package}",
"asset_name": "${package}-${rust_target}-v${version}.tgz",

View File

@@ -1,6 +1,6 @@
{
"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)",
"license_markdown": "[Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/master/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/master/LICENSE-MIT)",
"tag_prefix": "v",
"rust_crate": "${package}",
"asset_name": "${package}-${rust_target}.tar.xz",

View File

@@ -1,6 +1,6 @@
{
"repository": "https://github.com/cargo-bins/cargo-binstall",
"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/main/crates/bin/LICENSE)",
"tag_prefix": "v",
"rust_crate": "${package}",
"asset_name": "${package}-${rust_target}.zip",

View File

@@ -1,5 +1,6 @@
{
"repository": "https://github.com/RalfJung/cargo-careful",
"license_markdown": "[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)",
"tag_prefix": "v",
"rust_crate": "${package}",
"asset_name": "${package}-${rust_target}",

View File

@@ -1,5 +1,6 @@
{
"repository": "https://github.com/CycloneDX/cyclonedx-rust-cargo",
"license_markdown": "[Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE)",
"tag_prefix": "cargo-cyclonedx-",
"rust_crate": "${package}",
"bin": "${package}-${rust_target}/${package}${exe}",

View File

@@ -1,5 +1,6 @@
{
"repository": "https://github.com/deadlinks/cargo-deadlinks",
"license_markdown": "[MIT](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-APACHE)",
"tag_prefix": "",
"rust_crate": "${package}",
"asset_name": "${package}-${rust_target_os}",

View File

@@ -1,5 +1,6 @@
{
"repository": "https://github.com/EmbarkStudios/cargo-deny",
"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)",
"tag_prefix": "",
"rust_crate": "${package}",
"asset_name": "${package}-${version}-${rust_target}.tar.gz",

View File

@@ -1,5 +1,6 @@
{
"repository": "https://github.com/sonos/dinghy",
"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)",
"tag_prefix": "",
"rust_crate": "${package}",
"broken": ["0.7.0"],

Some files were not shown because too many files have changed in this diff Show More