Compare commits

...

23 Commits

Author SHA1 Message Date
Taiki Endo
5939f3337e Release 2.75.15 2026-04-16 00:29:23 +00:00
Taiki Endo
6d098df757 Update mise manifest 2026-04-15 21:34:23 +00:00
Taiki Endo
f3fc54c0f0 Update cargo-nextest@latest to 0.9.133 2026-04-15 21:34:23 +00:00
Taiki Endo
2be691e249 Update vacuum manifest 2026-04-15 18:44:54 +00:00
Taiki Endo
3422300f25 Update biome@latest to 2.4.12 2026-04-15 18:44:54 +00:00
Taiki Endo
374ad2bb5d Update cargo-machete manifest 2026-04-15 17:54:02 +00:00
Taiki Endo
0c7a949999 Release 2.75.14 2026-04-15 13:55:41 +00:00
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
Taiki Endo
6e4b50d359 Release 2.75.12 2026-04-14 16:03:59 +00:00
Taiki Endo
3411de31ce Update typos@latest to 1.45.1 2026-04-14 15:46:33 +00:00
Taiki Endo
38648f783e Update cargo-xwin@latest to 0.21.5 2026-04-14 15:46:33 +00:00
Taiki Endo
4e82423083 Update cargo-binstall@latest to 1.18.1 2026-04-14 14:01:46 +00:00
171 changed files with 364 additions and 394 deletions

View File

@@ -10,6 +10,32 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased] ## [Unreleased]
## [2.75.15] - 2026-04-16
- Update `cargo-nextest@latest` to 0.9.133.
- Update `biome@latest` to 2.4.12.
## [2.75.14] - 2026-04-15
- 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.
- Update `cargo-xwin@latest` to 0.21.5.
- Update `cargo-binstall@latest` to 1.18.1.
## [2.75.11] - 2026-04-14 ## [2.75.11] - 2026-04-14
- Update `prek@latest` to 0.3.9. - Update `prek@latest` to 0.3.9.
@@ -6249,7 +6275,11 @@ Note: This release is considered a breaking change because installing on version
Initial release Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.11...HEAD [Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.15...HEAD
[2.75.15]: https://github.com/taiki-e/install-action/compare/v2.75.14...v2.75.15
[2.75.14]: https://github.com/taiki-e/install-action/compare/v2.75.13...v2.75.14
[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.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 [2.75.10]: https://github.com/taiki-e/install-action/compare/v2.75.9...v2.75.10
[2.75.9]: https://github.com/taiki-e/install-action/compare/v2.75.8...v2.75.9 [2.75.9]: https://github.com/taiki-e/install-action/compare/v2.75.8...v2.75.9

View File

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

20
main.sh
View File

@@ -464,7 +464,8 @@ case "$(uname -s)" in
host_env=musl host_env=musl
else else
host_env=gnu 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 fi
if [[ -e /etc/redhat-release ]]; then if [[ -e /etc/redhat-release ]]; then
# /etc/os-release is available on RHEL/CentOS 7+ # /etc/os-release is available on RHEL/CentOS 7+
@@ -563,6 +564,7 @@ fi
install_action_dir="${home}/.install-action" install_action_dir="${home}/.install-action"
tmp_dir="${install_action_dir}/tmp" tmp_dir="${install_action_dir}/tmp"
cargo_bin="${CARGO_HOME:-"${home}/.cargo"}/bin" 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 # 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 # is used ($CARGO_HOME/bin is most likely not included in the PATH), fallback to
# $install_action_dir/bin. # $install_action_dir/bin.
@@ -570,15 +572,15 @@ if [[ "${host_os}" == "windows" ]]; then
mkdir -p -- "${install_action_dir}" mkdir -p -- "${install_action_dir}"
# See action.yml. # See action.yml.
touch -- "${install_action_dir}"/init touch -- "${install_action_dir}"/init
if type -P cargo >/dev/null; then if [[ -n "${cargo_path}" ]]; then
info "cargo is located at $(type -P cargo)" info "cargo is located at ${cargo_path}"
cargo_bin=$(dirname -- "$(type -P cargo)") cargo_bin="${cargo_path%/*}"
else else
cargo_bin="${install_action_dir}/bin" cargo_bin="${install_action_dir}/bin"
fi fi
elif [[ ! -e "${cargo_bin}" ]] || [[ "$(type -P cargo || true)" != "${cargo_bin}/cargo"* ]]; then elif [[ ! -e "${cargo_bin}" ]] || [[ "${cargo_path}" != "${cargo_bin}/cargo"* ]]; then
if type -P cargo >/dev/null; then if [[ -n "${cargo_path}" ]]; then
info "cargo is located at $(type -P cargo)" info "cargo is located at ${cargo_path}"
fi 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 # 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" cargo_bin="${install_action_dir}/bin"
@@ -594,7 +596,7 @@ if [[ $# -gt 0 ]]; then
fi fi
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
manifest_dir="$(dirname -- "$0")/manifests" manifest_dir="${GITHUB_ACTION_PATH}/manifests"
# Inputs # Inputs
tool="${INPUT_TOOL:-}" tool="${INPUT_TOOL:-}"
@@ -987,7 +989,7 @@ if [[ ${#unsupported_tools[@]} -gt 0 ]]; then
cargo install "${cargo_args[@]}" "${tool}" cargo install "${cargo_args[@]}" "${tool}"
done done
fi fi
if ! type -P cargo >/dev/null; then if [[ -z "${cargo_path}" ]]; then
_bin_dir=$(canonicalize_windows_path "${home}/.cargo/bin") _bin_dir=$(canonicalize_windows_path "${home}/.cargo/bin")
# TODO: avoid this when already added # TODO: avoid this when already added
info "adding '${_bin_dir}' to PATH" info "adding '${_bin_dir}' to PATH"

View File

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

45
manifests/biome.json generated
View File

@@ -1,15 +1,52 @@
{ {
"rust_crate": null, "rust_crate": null,
"template": 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": { "latest": {
"version": "2.4.11" "version": "2.4.12"
}, },
"2": { "2": {
"version": "2.4.11" "version": "2.4.12"
}, },
"2.4": { "2.4": {
"version": "2.4.11" "version": "2.4.12"
},
"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": { "2.4.11": {
"x86_64_linux_musl": { "x86_64_linux_musl": {

View File

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

View File

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

View File

@@ -20,34 +20,33 @@
"url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v${version}/cargo-binstall-aarch64-pc-windows-msvc.zip" "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": { "latest": {
"version": "1.18.0" "version": "1.18.1"
}, },
"1.18.0": { "1.18.1": {
"x86_64_linux_musl": { "x86_64_linux_musl": {
"etag": "0x8DE98AE6D18E96D", "etag": "0x8DE9959D5E8FE78",
"hash": "7ca2de024161eb95b0207475e931cca7ffa8aae1567811b2dc5e18581f2fe216" "hash": "cf2a4b54494ea8555d6349685e9a301efc1051d9fba6308c76914b2486f8700f"
}, },
"x86_64_macos": { "x86_64_macos": {
"etag": "0x8DE98AE7368B908", "etag": "0x8DE9959DBCBBA2C",
"hash": "f6014ff3c1fd2c2a744005b370ee3e271ef7d2b7d5c68fa49da17d66de3d714d" "hash": "e06370bec7143668653bb7c09d0b8b689fc703dd4fa58ec5847c4b571d8a490d"
}, },
"x86_64_windows": { "x86_64_windows": {
"etag": "0x8DE98AE715AC769", "etag": "0x8DE9959D9E5BCF3",
"hash": "0458444c42221fd6d89785ea438cab9bedebdfe93425f0ea31e6bb53b7b9db9f" "hash": "89706aa5215c164d8d091597a470fee72308ac87e8553af395ea77db844a888c"
}, },
"aarch64_linux_musl": { "aarch64_linux_musl": {
"etag": "0x8DE98AE7E2AB5E8", "etag": "0x8DE9959E60E685D",
"hash": "a59b465665e3a4ce54d2039f858217b68b2d972cb6bd189995f56a76f43418fd" "hash": "c55962a0115f9716b709216de7f8bdd59d6ba8738779e60b051b4593f677717a"
}, },
"aarch64_macos": { "aarch64_macos": {
"etag": "0x8DE98AE86092802", "etag": "0x8DE9959ED2C11A4",
"hash": "2e5196f9039089f7df6f20443ce430fd91c3795725911fcc59847ea8cccb6b3d" "hash": "955abf167994c90f3547e233edace4c0f794465dd4aa408249b38999aa5ca3cf"
}, },
"aarch64_windows": { "aarch64_windows": {
"etag": "0x8DE98AE8376BD4D", "etag": "0x8DE9959EAAC5732",
"hash": "a1b61dd998338c9c71abb169850e8de9c436dd1db901498c05287fc18c7169b9" "hash": "c6873e81457d9e44973a8e9a849795f2c83765fce0af8ad68b597b5b40dec418"
} }
} }
} }

View File

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

View File

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

View File

@@ -14,7 +14,6 @@
"bin": "cargo-deadlinks" "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": { "latest": {
"version": "0.8.1" "version": "0.8.1"
}, },

View File

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

View File

@@ -22,12 +22,33 @@
"bin": "cargo-deny-${version}-aarch64-apple-darwin/cargo-deny" "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": { "latest": {
"version": "0.19.1" "version": "0.19.2"
}, },
"0.19": { "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": { "0.19.2": {
"x86_64_linux_musl": { "x86_64_linux_musl": {

View File

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

View File

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

View File

@@ -1,7 +1,6 @@
{ {
"rust_crate": "cargo-hack", "rust_crate": "cargo-hack",
"template": null, "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": { "latest": {
"version": "0.6.44" "version": "0.6.44"
}, },

View File

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

View File

@@ -1,13 +1,44 @@
{ {
"rust_crate": "cargo-machete", "rust_crate": "cargo-machete",
"template": null, "template": null,
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
"latest": { "latest": {
"version": "0.9.1" "version": "0.9.1"
}, },
"0.9": { "0.9": {
"version": "0.9.1" "version": "0.9.1"
}, },
"0.9.2": {
"x86_64_linux_musl": {
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-x86_64-unknown-linux-musl.tar.gz",
"etag": "0x8DE9B0EC4E4A16A",
"hash": "48200087f54c55aabcd4db4af1e25742b49846c02a1b1bfa134711945b35b2e9",
"bin": "cargo-machete-v0.9.2-x86_64-unknown-linux-musl/cargo-machete"
},
"x86_64_macos": {
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-x86_64-apple-darwin.tar.gz",
"etag": "0x8DE9B0EC263ACC1",
"hash": "3e8cb936c9b820f84d047a2b5be8b229b2be67bf2467014885376a6faffdcac3",
"bin": "cargo-machete-v0.9.2-x86_64-apple-darwin/cargo-machete"
},
"x86_64_windows": {
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-x86_64-pc-windows-msvc.tar.gz",
"etag": "0x8DE9B0EDA735250",
"hash": "996120ac70afe405c58fce508a476f25bb71032c6fb8013aa0123bba36429c76",
"bin": "cargo-machete-v0.9.2-x86_64-pc-windows-msvc/cargo-machete.exe"
},
"aarch64_linux_gnu": {
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-aarch64-unknown-linux-gnu.tar.gz",
"etag": "0x8DE9B0EB0A844A7",
"hash": "6f96c3e6026a5bdd241b6ae600c6fb86c9197c6e189a894f91371baa01fd10f5",
"bin": "cargo-machete-v0.9.2-aarch64-unknown-linux-gnu/cargo-machete"
},
"aarch64_macos": {
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-aarch64-apple-darwin.tar.gz",
"etag": "0x8DE9B0EC004E6C0",
"hash": "63e28fee386d82d33f2d12406c857f98e2d4697f3f7df7f71f34dff07fca0fde",
"bin": "cargo-machete-v0.9.2-aarch64-apple-darwin/cargo-machete"
}
},
"0.9.1": { "0.9.1": {
"x86_64_linux_musl": { "x86_64_linux_musl": {
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.1/cargo-machete-v0.9.1-x86_64-unknown-linux-musl.tar.gz", "url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.1/cargo-machete-v0.9.1-x86_64-unknown-linux-musl.tar.gz",

View File

@@ -18,7 +18,6 @@
"bin": "cargo-make-v${version}-aarch64-apple-darwin/cargo-make" "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": { "latest": {
"version": "0.37.24" "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" "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": { "latest": {
"version": "0.1.37" "version": "0.1.37"
}, },

View File

@@ -22,7 +22,6 @@
"bin": "cargo-neat-${version}-aarch64-apple-darwin/cargo-neat" "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": { "latest": {
"version": "0.3.2" "version": "0.3.2"
}, },

View File

@@ -26,12 +26,46 @@
"url": "https://github.com/nextest-rs/nextest/releases/download/cargo-nextest-${version}/cargo-nextest-${version}-riscv64gc-unknown-linux-gnu.tar.gz" "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": { "latest": {
"version": "0.9.132" "version": "0.9.133"
}, },
"0.9": { "0.9": {
"version": "0.9.132" "version": "0.9.133"
},
"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": { "0.9.132": {
"previous_stable_version": "0.9.131", "previous_stable_version": "0.9.131",

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" "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": { "latest": {
"version": "0.2.23" "version": "0.2.23"
}, },

View File

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

View File

@@ -26,7 +26,6 @@
"bin": "cargo-shear.exe" "bin": "cargo-shear.exe"
} }
}, },
"license_markdown": "[MIT](https://github.com/Boshen/cargo-shear/blob/main/LICENSE)",
"latest": { "latest": {
"version": "1.11.2" "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" "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": { "latest": {
"version": "2.1.3" "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" "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": { "latest": {
"version": "0.15.1" "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" "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": { "latest": {
"version": "0.35.2" "version": "0.35.2"
}, },

View File

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

View File

@@ -14,12 +14,11 @@
"url": "https://github.com/rust-cross/cargo-xwin/releases/download/v${version}/cargo-xwin-v${version}.aarch64-unknown-linux-musl.tar.gz" "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": { "latest": {
"version": "0.21.4" "version": "0.21.5"
}, },
"0.21": { "0.21": {
"version": "0.21.4" "version": "0.21.5"
}, },
"0.21.5": { "0.21.5": {
"x86_64_linux_musl": { "x86_64_linux_musl": {

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" "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": { "latest": {
"version": "0.21.4" "version": "0.21.4"
}, },

View File

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

View File

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

1
manifests/cross.json generated
View File

@@ -1,7 +1,6 @@
{ {
"rust_crate": "cross", "rust_crate": "cross",
"template": null, "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": { "latest": {
"version": "0.2.5" "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" "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": { "latest": {
"version": "0.30.0" "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" "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": { "latest": {
"version": "0.10.1" "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" "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": { "latest": {
"version": "0.54.0" "version": "0.54.0"
}, },

View File

@@ -17,7 +17,6 @@
"url": "https://github.com/earthly/earthly/releases/download/v${version}/earthly-darwin-arm64" "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": { "latest": {
"version": "0.8.16" "version": "0.8.16"
}, },

View File

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

View File

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

View File

@@ -22,7 +22,6 @@
"bin": "gungraun-runner-v${version}-s390x-unknown-linux-gnu/gungraun-runner" "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": { "latest": {
"version": "0.18.1" "version": "0.18.1"
}, },

View File

@@ -22,7 +22,6 @@
"bin": "hyperfine-v${version}-aarch64-apple-darwin/hyperfine" "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": { "latest": {
"version": "1.20.0" "version": "1.20.0"
}, },

View File

@@ -22,7 +22,6 @@
"bin": "iai-callgrind-runner-v${version}-s390x-unknown-linux-gnu/iai-callgrind-runner" "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": { "latest": {
"version": "0.16.1" "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" "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": { "latest": {
"version": "1.6.0" "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" "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": { "latest": {
"version": "1.49.0" "version": "1.49.0"
}, },

1
manifests/knope.json generated
View File

@@ -1,7 +1,6 @@
{ {
"rust_crate": "knope", "rust_crate": "knope",
"template": null, "template": null,
"license_markdown": "[MIT](https://github.com/knope-dev/knope/blob/main/LICENSE)",
"latest": { "latest": {
"version": "0.22.4" "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": { "latest": {
"version": "1.5.0" "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" "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": { "latest": {
"version": "0.8.0" "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" "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": { "latest": {
"version": "0.7.7" "version": "0.7.7"
}, },

View File

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

View File

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

53
manifests/mise.json generated
View File

@@ -26,7 +26,6 @@
"bin": "mise/bin/mise.exe" "bin": "mise/bin/mise.exe"
} }
}, },
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
"latest": { "latest": {
"version": "2026.4.11" "version": "2026.4.11"
}, },
@@ -36,6 +35,58 @@
"2026.4": { "2026.4": {
"version": "2026.4.11" "version": "2026.4.11"
}, },
"2026.4.14": {
"x86_64_linux_musl": {
"etag": "0x8DE9B2D3A8BD6AA",
"hash": "863b5c302b4ff88fb864fd46034973eef1a758bdd65d6f0b087cdb0217e0ac35"
},
"x86_64_macos": {
"etag": "0x8DE9B2D3D2ADE39",
"hash": "553884b12050bf61a15daab6d705856a3cd66db03c9db1db4c0d015e8adae47f"
},
"x86_64_windows": {
"etag": "0x8DE9B2D3E46F53D",
"hash": "27bebd90b1dcc0a8a04c375837dda567b89557a56435a15a51876be2f5a20e0a"
},
"aarch64_linux_musl": {
"etag": "0x8DE9B2D374ED006",
"hash": "614088eea52d08e193bee1857ac27dc9ee31bef3d5b3fb18021906bab3c02af7"
},
"aarch64_macos": {
"etag": "0x8DE9B2D3C9CF99B",
"hash": "03850d421ead7c3dfadf4dff6fa3e0bb8641d2a1bcb983151586605eca600d18"
},
"aarch64_windows": {
"etag": "0x8DE9B2D3DD0EA93",
"hash": "5062dc6928acc63084a38e19e38118377e07bb6955ca8d825b8045ca384d2fca"
}
},
"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": { "2026.4.11": {
"x86_64_linux_musl": { "x86_64_linux_musl": {
"etag": "0x8DE99529B2B70CC", "etag": "0x8DE99529B2B70CC",

View File

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

View File

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

1
manifests/prek.json generated
View File

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

1
manifests/protoc.json generated
View File

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

1
manifests/rclone.json generated
View File

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

View File

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

View File

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

1
manifests/syft.json generated
View File

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

1
manifests/taplo.json generated
View File

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

1
manifests/trivy.json generated
View File

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

7
manifests/typos.json generated
View File

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

1
manifests/ubi.json generated
View File

@@ -38,7 +38,6 @@
"bin": "ubi" "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": { "latest": {
"version": "0.9.0" "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": { "latest": {
"version": "0.11.6" "version": "0.11.6"
}, },

27
manifests/vacuum.json generated
View File

@@ -20,13 +20,38 @@
"url": "https://github.com/daveshanley/vacuum/releases/download/v${version}/vacuum_${version}_windows_arm64.tar.gz" "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": { "latest": {
"version": "0.25.8" "version": "0.25.8"
}, },
"0.25": { "0.25": {
"version": "0.25.8" "version": "0.25.8"
}, },
"0.25.9": {
"x86_64_linux_musl": {
"etag": "0x8DE9B17975790FC",
"hash": "1cebac48d4dbb57fef6aa968b1ceaeca6a2b2107d7c739d4d611006b7e1e6119"
},
"x86_64_macos": {
"etag": "0x8DE9B1797523FC7",
"hash": "bbc375b6ac24e98fa5467f3ebd1bc8b2ce36e00a822584af99b4922dab3603cc"
},
"x86_64_windows": {
"etag": "0x8DE9B17980E0620",
"hash": "a873f764edd2933a0cbd54c107d681970a3699a248c0cc182087ea89ab09d78f"
},
"aarch64_linux_musl": {
"etag": "0x8DE9B1797F542BF",
"hash": "e993bec85eb592ee47b5b14485d76189d02e1d5cccf68ddafebae7f9e510eb2a"
},
"aarch64_macos": {
"etag": "0x8DE9B17974EC142",
"hash": "fbfe8b73d2ff058cb465d553f4fe411d3b7c8ed2387bdd194445fb67674c56ea"
},
"aarch64_windows": {
"etag": "0x8DE9B1798137E3B",
"hash": "e1528b4d12baed0946e19a9057cd331ed4fc5b68f88579ea134ccfc5c1efc1dc"
}
},
"0.25.8": { "0.25.8": {
"x86_64_linux_musl": { "x86_64_linux_musl": {
"etag": "0x8DE97FE9C1F2A0A", "etag": "0x8DE97FE9C1F2A0A",

View File

@@ -11,7 +11,6 @@
"url": "https://github.com/shenek/wait-for-them/releases/download/v${version}/wait-for-them-macos" "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": { "latest": {
"version": "0.5.1" "version": "0.5.1"
}, },

1
manifests/wash.json generated
View File

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

View File

@@ -22,7 +22,6 @@
"bin": "wasm-pack-v${version}-aarch64-apple-darwin/wasm-pack" "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": { "latest": {
"version": "0.14.0" "version": "0.14.0"
}, },

View File

@@ -22,7 +22,6 @@
"bin": "wasm-tools-${version}-aarch64-macos/wasm-tools" "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": { "latest": {
"version": "1.246.2" "version": "1.246.2"
}, },

View File

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

1
manifests/xbuild.json generated
View File

@@ -14,7 +14,6 @@
"bin": "xbuild-windows-x64.exe" "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": { "latest": {
"version": "0.2.0" "version": "0.2.0"
}, },

1
manifests/xh.json generated
View File

@@ -22,7 +22,6 @@
"bin": "xh-v${version}-aarch64-apple-darwin/xh" "bin": "xh-v${version}-aarch64-apple-darwin/xh"
} }
}, },
"license_markdown": "[MIT](https://github.com/ducaale/xh/blob/master/LICENSE)",
"latest": { "latest": {
"version": "0.25.3" "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" "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": { "latest": {
"version": "1.24.0" "version": "1.24.1"
}, },
"1": { "1": {
"version": "1.24.0" "version": "1.24.1"
}, },
"1.24": { "1.24": {
"version": "1.24.0" "version": "1.24.1"
}, },
"1.24.1": { "1.24.1": {
"x86_64_linux_gnu": { "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" "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": { "latest": {
"version": "0.22.1" "version": "0.22.1"
}, },

View File

@@ -72,7 +72,8 @@ case "$(uname -s)" in
if [[ "${ldd_version}" == *'musl'* ]]; then if [[ "${ldd_version}" == *'musl'* ]]; then
incompat_tools+=("${musl_incompat[@]}") incompat_tools+=("${musl_incompat[@]}")
else 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) higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.39"$'\n'"${host_glibc_version}" | tail -1)
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.35"$'\n'"${host_glibc_version}" | tail -1) 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 = "1"
serde_derive = "1" serde_derive = "1"
serde_json = "1" serde_json = "1"
spdx = "0.13"
tar = "0.4" tar = "0.4"
toml = { version = "1", default-features = false, features = ["parse", "serde"] } toml = { version = "1", default-features = false, features = ["parse", "serde"] }
# TODO: call curl command instead of using ureq? # TODO: call curl command instead of using ureq?

View File

@@ -1,5 +1,6 @@
{ {
"repository": "https://github.com/tj-actions/auto-doc", "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", "tag_prefix": "v",
"bin": "${package}${exe}", "bin": "${package}${exe}",
"version_range": ">= 3.0.0", "version_range": ">= 3.0.0",

View File

@@ -1,7 +1,7 @@
{ {
"repository": "https://github.com/rustsec/rustsec", "repository": "https://github.com/rustsec/rustsec",
"website": "https://github.com/rustsec/rustsec/tree/HEAD/cargo-audit", "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", "tag_prefix": "cargo-audit/v",
"rust_crate": "${package}", "rust_crate": "${package}",
"asset_name": "${package}-${rust_target}-v${version}.tgz", "asset_name": "${package}-${rust_target}-v${version}.tgz",

View File

@@ -1,6 +1,6 @@
{ {
"repository": "https://github.com/rust-secure-code/cargo-auditable", "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", "tag_prefix": "v",
"rust_crate": "${package}", "rust_crate": "${package}",
"asset_name": "${package}-${rust_target}.tar.xz", "asset_name": "${package}-${rust_target}.tar.xz",

View File

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

View File

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

View File

@@ -1,5 +1,6 @@
{ {
"repository": "https://github.com/CycloneDX/cyclonedx-rust-cargo", "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-", "tag_prefix": "cargo-cyclonedx-",
"rust_crate": "${package}", "rust_crate": "${package}",
"bin": "${package}-${rust_target}/${package}${exe}", "bin": "${package}-${rust_target}/${package}${exe}",

View File

@@ -1,5 +1,6 @@
{ {
"repository": "https://github.com/deadlinks/cargo-deadlinks", "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": "", "tag_prefix": "",
"rust_crate": "${package}", "rust_crate": "${package}",
"asset_name": "${package}-${rust_target_os}", "asset_name": "${package}-${rust_target_os}",

View File

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

View File

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

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