mirror of
https://github.com/taiki-e/install-action
synced 2026-09-07 20:03:26 +00:00
Compare commits
38
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7566428207 | ||
|
|
e24f9d2f1d | ||
|
|
a32489a311 | ||
|
|
85f1221a01 | ||
|
|
378cd7099e | ||
|
|
58a23a132d | ||
|
|
b0451605b9 | ||
|
|
c2f7573e00 | ||
|
|
ff1f1a27bd | ||
|
|
8682898895 | ||
|
|
6c29d3f326 | ||
|
|
1d8976e7a3 | ||
|
|
ac8bd0b28d | ||
|
|
7df7a3a590 | ||
|
|
3a01877a3b | ||
|
|
bf701eabf8 | ||
|
|
7441b14706 | ||
|
|
67ffa5404d | ||
|
|
44e8d07671 | ||
|
|
3196c59c70 | ||
|
|
18a2e880cb | ||
|
|
a30e57accd | ||
|
|
7713cd7b4a | ||
|
|
79f9fd9df5 | ||
|
|
e2ce78fa19 | ||
|
|
67b7c77839 | ||
|
|
89b11c24ae | ||
|
|
409d647a70 | ||
|
|
b1527d67c0 | ||
|
|
212b435433 | ||
|
|
50ac0ac2da | ||
|
|
fc6beaac8f | ||
|
|
012cbaff7f | ||
|
|
517ce9d464 | ||
|
|
732e3fa394 | ||
|
|
9be19a83e8 | ||
|
|
b94661c19b | ||
|
|
2f117b7ec1 |
@@ -1,13 +0,0 @@
|
||||
# Clippy configuration
|
||||
# https://doc.rust-lang.org/nightly/clippy/lint_configuration.html
|
||||
|
||||
allow-private-module-inception = true
|
||||
avoid-breaking-exported-api = false
|
||||
disallowed-names = []
|
||||
disallowed-macros = [
|
||||
{ path = "std::dbg", reason = "it is okay to use during development, but please do not include it in main branch" },
|
||||
]
|
||||
disallowed-methods = [
|
||||
]
|
||||
disallowed-types = [
|
||||
]
|
||||
@@ -1,52 +0,0 @@
|
||||
{
|
||||
"version": "0.2",
|
||||
"gitignoreRoot": ".",
|
||||
"useGitignore": true,
|
||||
"dictionaryDefinitions": [
|
||||
{
|
||||
"name": "organization-dictionary",
|
||||
"path": "https://raw.githubusercontent.com/taiki-e/github-actions/HEAD/.github/.cspell/organization-dictionary.txt",
|
||||
"addWords": true
|
||||
},
|
||||
{
|
||||
"name": "project-dictionary",
|
||||
"path": "./.github/.cspell/project-dictionary.txt",
|
||||
"addWords": true
|
||||
},
|
||||
{
|
||||
"name": "rust-dependencies",
|
||||
"path": "./.github/.cspell/rust-dependencies.txt",
|
||||
"addWords": true
|
||||
}
|
||||
],
|
||||
"dictionaries": [
|
||||
"organization-dictionary",
|
||||
"project-dictionary",
|
||||
"rust-dependencies"
|
||||
],
|
||||
"ignoreRegExpList": [
|
||||
// Copyright notice
|
||||
"Copyright .*",
|
||||
"SPDX-(File|Snippet)CopyrightText: .*",
|
||||
// GHA actions/workflows
|
||||
"uses: .+@[\\w_.-]+",
|
||||
// GHA context (repo name, owner name, etc.)
|
||||
"github.[\\w_.-]+ (=|!)= '[^']+'",
|
||||
// GH username
|
||||
"( |\\[)@[\\w_-]+",
|
||||
// Git config username
|
||||
"git config( --[^ ]+)? user.name .*",
|
||||
// Username in TODO|FIXME comment
|
||||
"(TODO|FIXME)\\([\\w_., -]+\\)",
|
||||
// Cargo.toml authors
|
||||
"authors *= *\\[[^\\]]*\\]",
|
||||
"\"[^\"]* <[\\w_.+-]+@[\\w.-]+>\""
|
||||
],
|
||||
"languageSettings": [
|
||||
{
|
||||
"languageId": ["*"],
|
||||
"dictionaries": ["bash", "cpp-refined", "rust"]
|
||||
}
|
||||
],
|
||||
"ignorePaths": []
|
||||
}
|
||||
-48
@@ -1,48 +0,0 @@
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
|
||||
[advisories]
|
||||
unused-ignored-advisory = "deny"
|
||||
yanked = "deny"
|
||||
unmaintained = "none"
|
||||
unsound = "all"
|
||||
git-fetch-with-cli = true
|
||||
ignore = [
|
||||
]
|
||||
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
|
||||
[bans]
|
||||
multiple-versions = "warn"
|
||||
wildcards = "deny"
|
||||
allow-wildcard-paths = true
|
||||
build.executables = "deny"
|
||||
build.interpreted = "deny"
|
||||
build.include-dependencies = true
|
||||
build.include-workspace = false # covered by tools/tidy.sh
|
||||
build.include-archives = true
|
||||
build.allow-build-scripts = [
|
||||
{ name = "proc-macro2" }, # via serde_derive
|
||||
{ name = "quote" }, # via serde_derive
|
||||
{ name = "semver" },
|
||||
{ name = "serde_core" },
|
||||
{ name = "serde" }, # https://github.com/serde-rs/serde/issues/2972
|
||||
]
|
||||
build.bypass = [
|
||||
]
|
||||
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
|
||||
[licenses]
|
||||
unused-allowed-license = "deny"
|
||||
unused-license-exception = "deny"
|
||||
private.ignore = true
|
||||
allow = [
|
||||
"Apache-2.0",
|
||||
"MIT",
|
||||
"Unicode-3.0", # unicode-ident
|
||||
]
|
||||
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
|
||||
[sources]
|
||||
unused-allowed-source = "deny"
|
||||
unknown-registry = "deny"
|
||||
unknown-git = "deny"
|
||||
allow-git = [
|
||||
]
|
||||
@@ -1,24 +0,0 @@
|
||||
# EditorConfig configuration
|
||||
# https://editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.{css,html,json,md,rb,ps1,sh,yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
[*.{js,yml,yaml}]
|
||||
quote_type = single
|
||||
|
||||
[*.sh]
|
||||
# https://google.github.io/styleguide/shellguide.html#s5.3-pipelines
|
||||
binary_next_line = true
|
||||
# https://google.github.io/styleguide/shellguide.html#s5.5-case-statement
|
||||
switch_case_indent = true
|
||||
@@ -1,2 +0,0 @@
|
||||
# Change indent size of shell script files to match scripts in CI config
|
||||
946918579413996845b77e146aa8eb3c6f40f7ab
|
||||
@@ -1,4 +0,0 @@
|
||||
* text=auto eol=lf
|
||||
tools/tidy.sh linguist-detectable=false
|
||||
.github/.cspell/rust-dependencies.txt linguist-generated
|
||||
manifests/** linguist-generated
|
||||
@@ -1,46 +0,0 @@
|
||||
almalinux
|
||||
archlinux
|
||||
binstall
|
||||
callgrind
|
||||
CDPATH
|
||||
coreutils
|
||||
covgate
|
||||
cyclonedx
|
||||
cygdrive
|
||||
deadlinks
|
||||
deepsource
|
||||
doas
|
||||
enablerepo
|
||||
epel
|
||||
espup
|
||||
fastestmirror
|
||||
grcov
|
||||
gungraun
|
||||
insta
|
||||
knope
|
||||
LASTEXITCODE
|
||||
libicu
|
||||
linkcheck
|
||||
mdbook
|
||||
microdnf
|
||||
minisig
|
||||
mirrorlist
|
||||
nextest
|
||||
pluginconf
|
||||
ppcle
|
||||
prek
|
||||
quickinstall
|
||||
rdme
|
||||
sccache
|
||||
SHASUMS
|
||||
sigstore
|
||||
startswith
|
||||
syft
|
||||
tombi
|
||||
udeps
|
||||
USERPROFILE
|
||||
wasmtime
|
||||
watchexec
|
||||
xbuild
|
||||
xscale
|
||||
xwin
|
||||
@@ -1,6 +0,0 @@
|
||||
# This file is @generated by tidy.sh.
|
||||
# It is not intended for manual editing.
|
||||
|
||||
flate
|
||||
minisign
|
||||
ureq
|
||||
@@ -1 +0,0 @@
|
||||
blank_issues_enabled: true
|
||||
@@ -1,46 +0,0 @@
|
||||
name: New tool suggestion
|
||||
description: Suggest support for a new tool
|
||||
labels: [enhancement]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for a new tool suggestion!
|
||||
|
||||
Normally, you don't need to open an issue to request support for a new tool.
|
||||
Instead, please submit a pull request.
|
||||
(See [DEVELOPMENT.md](https://github.com/taiki-e/install-action/blob/main/DEVELOPMENT.md) for how to add support for a new tool.)
|
||||
|
||||
That said, if you have any questions before getting started, or if you’re unable to contribute for any reason, feel free to open an issue.
|
||||
- type: input
|
||||
id: name
|
||||
attributes:
|
||||
label: Tool name
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: pre-built
|
||||
attributes:
|
||||
label: Are official pre-built binaries provided?
|
||||
description: |
|
||||
If "No", this issue will be blocked until official pre-built binaries are provided.<br>
|
||||
If "Unknown", this issue will be blocked until it is determined that it is provided.<br>
|
||||
(When the tool is a Rust crate, it may already be available via fallback even if "No" or "Unknown".)<br>
|
||||
options:
|
||||
- 'Yes'
|
||||
- 'No'
|
||||
- Unknown
|
||||
default: 2
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: url
|
||||
attributes:
|
||||
label: Website or repository link
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: context
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Any additional context that you believe may be relevant.
|
||||
@@ -1,27 +0,0 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: cargo
|
||||
directory: /
|
||||
schedule:
|
||||
interval: weekly
|
||||
cooldown:
|
||||
default-days: 14 # Note: Unless dependencies are pinned/locked, the effect is limited.
|
||||
commit-message:
|
||||
prefix: ''
|
||||
ignore:
|
||||
# https://github.com/taiki-e/install-action/pull/831#issuecomment-2650284580
|
||||
- dependency-name: ureq
|
||||
labels: []
|
||||
- package-ecosystem: github-actions
|
||||
directory: /
|
||||
schedule:
|
||||
interval: monthly
|
||||
cooldown:
|
||||
default-days: 14
|
||||
commit-message:
|
||||
prefix: ''
|
||||
labels: []
|
||||
groups:
|
||||
github-actions:
|
||||
patterns:
|
||||
- '*'
|
||||
@@ -1,337 +0,0 @@
|
||||
name: CI
|
||||
|
||||
permissions: {}
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- dev
|
||||
- ci-*
|
||||
schedule:
|
||||
- cron: '0 2 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
CARGO_INCREMENTAL: 0
|
||||
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
||||
CARGO_NET_RETRY: 10
|
||||
CARGO_TERM_COLOR: always
|
||||
RUST_BACKTRACE: 1
|
||||
RUSTFLAGS: -D warnings
|
||||
RUSTUP_MAX_RETRIES: 10
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash --noprofile --norc -CeEuxo pipefail {0}
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
miri:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/miri.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
with:
|
||||
# NB: sync with test job's --exclude option
|
||||
args: --exclude install-action-internal-codegen
|
||||
msrv:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/msrv.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
test-manifest-schema:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/test.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
with:
|
||||
# NB: sync with miri job's --exclude option
|
||||
test-args: --exclude install-action-internal-codegen
|
||||
no-std: false
|
||||
tidy:
|
||||
uses: taiki-e/github-actions/.github/workflows/tidy.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
permissions:
|
||||
security-events: write # for github/codeql-action/*
|
||||
|
||||
test:
|
||||
needs: tidy
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
# NB: Sync list with https://github.com/taiki-e/checkout-action/blob/HEAD/.github/workflows/ci.yml
|
||||
# --------------------------------------------------------------------
|
||||
# GitHub-hosted runners
|
||||
- os: ubuntu-24.04
|
||||
- os: ubuntu-24.04-arm
|
||||
- os: ubuntu-22.04
|
||||
- os: ubuntu-22.04-arm
|
||||
- os: ubuntu-slim
|
||||
- os: ubuntu-22.04
|
||||
tool: major.minor.patch
|
||||
- os: ubuntu-22.04
|
||||
tool: major.minor
|
||||
- os: ubuntu-22.04
|
||||
tool: major
|
||||
- os: macos-26
|
||||
- os: macos-15
|
||||
- os: macos-15-intel
|
||||
- os: windows-2025
|
||||
- os: windows-2025
|
||||
bash: msys2
|
||||
- os: windows-2025
|
||||
bash: cygwin
|
||||
- os: windows-2022
|
||||
- os: windows-2022
|
||||
bash: msys2
|
||||
- os: windows-2022
|
||||
bash: cygwin
|
||||
- os: windows-11-arm
|
||||
- os: windows-2022
|
||||
tool: major.minor.patch
|
||||
- os: windows-2022
|
||||
tool: major.minor
|
||||
- os: windows-2022
|
||||
tool: major
|
||||
# --------------------------------------------------------------------
|
||||
# Containers
|
||||
# --------------------------------------------------------------------
|
||||
# Debian-based
|
||||
- container: debian:sid # glibc
|
||||
- container: debian:testing # glibc
|
||||
- container: debian:13-slim # glibc 2.41
|
||||
- container: debian:12-slim # glibc 2.36
|
||||
- container: debian:11-slim # glibc 2.31, EoL
|
||||
- container: debian:10-slim # glibc 2.28, EoL, end of LTS
|
||||
- container: debian:9-slim # glibc 2.24, EoL, end of LTS
|
||||
- container: debian/eol:jessie-slim # 8, glibc 2.19, EoL, end of LTS
|
||||
- container: ubuntu:devel # glibc
|
||||
- container: ubuntu:rolling # glibc
|
||||
- container: ubuntu:26.04 # glibc 2.43
|
||||
- container: ubuntu:24.04 # glibc 2.39
|
||||
- container: ubuntu:22.04 # glibc 2.35
|
||||
- container: ubuntu:20.04 # glibc 2.31, EoL
|
||||
- container: ubuntu:18.04 # glibc 2.27, EoL
|
||||
- container: ubuntu:16.04 # glibc 2.23, EoL, end of ESM
|
||||
- container: ubuntu:14.04 # glibc 2.19, EoL, end of ESM
|
||||
# --------------------------------------------------------------------
|
||||
# Fedora/RHEL-based
|
||||
- container: fedora:latest # glibc
|
||||
- container: centos:7 # glibc 2.17, EoL
|
||||
- container: centos:6 # glibc 2.12, EoL
|
||||
- container: almalinux:10 # glibc 2.39
|
||||
- container: almalinux:10-minimal # glibc 2.39
|
||||
- container: almalinux:9 # glibc 2.34
|
||||
- container: almalinux:9-minimal # glibc 2.34
|
||||
- container: almalinux:8 # glibc 2.28
|
||||
- container: almalinux:8-minimal # glibc 2.28
|
||||
# --------------------------------------------------------------------
|
||||
# SUSE-based
|
||||
- container: opensuse/tumbleweed:latest # glibc
|
||||
- container: opensuse/leap:latest # glibc
|
||||
# --------------------------------------------------------------------
|
||||
# apk
|
||||
- container: alpine:3.23 # musl 1.2.5
|
||||
- container: alpine:3.22 # musl 1.2.5
|
||||
- container: alpine:3.21 # musl 1.2.5
|
||||
# Skip intermediate versions that have reached EoL by default.
|
||||
# - container: alpine:3.20 # musl 1.2.5, EoL
|
||||
# - container: alpine:3.19 # musl 1.2.4, EoL
|
||||
# - container: alpine:3.18 # musl 1.2.4, EoL
|
||||
# - container: alpine:3.17 # musl 1.2.3, EoL
|
||||
# - container: alpine:3.16 # musl 1.2.3, EoL
|
||||
# - container: alpine:3.15 # musl 1.2.2, EoL
|
||||
# - container: alpine:3.14 # musl 1.2.2, EoL
|
||||
# - container: alpine:3.13 # musl 1.2.2, EoL
|
||||
# - container: alpine:3.12 # musl 1.1.24, EoL
|
||||
# - container: alpine:3.11 # musl 1.1.24, EoL
|
||||
# - container: alpine:3.10 # musl 1.1.22, EoL
|
||||
# - container: alpine:3.9 # musl 1.1.20, EoL
|
||||
# - container: alpine:3.8 # musl 1.1.19, EoL
|
||||
# - container: alpine:3.7 # musl 1.1.18, EoL, broken env command
|
||||
# - container: alpine:3.6 # musl 1.1.16, EoL, broken env command
|
||||
# - container: alpine:3.5 # musl 1.1.15, EoL
|
||||
# - container: alpine:3.4 # musl 1.1.14, EoL
|
||||
# - container: alpine:3.3 # musl 1.1.12, EoL
|
||||
- container: alpine:3.2 # musl 1.1.11, EoL
|
||||
# --------------------------------------------------------------------
|
||||
# Arch-based
|
||||
- container: archlinux:latest # glibc
|
||||
runs-on: ${{ matrix.os || 'ubuntu-24.04' }}
|
||||
timeout-minutes: 30
|
||||
container: ${{ matrix.container }}
|
||||
steps:
|
||||
- name: Install requirements (old Debian)
|
||||
run: |
|
||||
# In Debian, the old repositories is removed from the main mirrors some time after EoL.
|
||||
codename=$(grep -E '^VERSION_CODENAME=' /etc/os-release | cut -d= -f2)
|
||||
sed -i /etc/apt/sources.list -e 's/deb.debian.org/archive.debian.org/g' \
|
||||
-e 's|security.debian.org|archive.debian.org/|g' \
|
||||
-e "/${codename}-updates/d"
|
||||
if: startsWith(matrix.container, 'debian:9') || startsWith(matrix.container, 'debian:10')
|
||||
- name: Install requirements (CentOS)
|
||||
run: |
|
||||
retry() {
|
||||
for i in {1..10}; do
|
||||
if "$@"; then
|
||||
return 0
|
||||
else
|
||||
sleep "${i}"
|
||||
fi
|
||||
done
|
||||
"$@"
|
||||
}
|
||||
# In CentOS, the old repositories is removed from the main mirrors just after EoL.
|
||||
# https://github.com/rust-lang/rust/pull/126352
|
||||
sed -i /etc/yum.repos.d/*.repo -e 's!^mirrorlist!#mirrorlist!' \
|
||||
-e 's!^#baseurl=http://mirror.centos.org/!baseurl=https://vault.centos.org/!'
|
||||
sed -i 's/enabled=1/enabled=0/' /etc/yum/pluginconf.d/fastestmirror.conf
|
||||
if [[ "${CONTAINER}" == "centos:6" ]]; then
|
||||
# CentOS 6's curl (7.19.7) has no curl has no --proto/--tlsv1.2.
|
||||
retry yum install -y gcc openssl-devel
|
||||
retry curl -fsSL --retry 10 https://curl.se/download/curl-7.34.0.tar.gz | tar xzf -
|
||||
cd -- curl-*
|
||||
./configure --prefix=/usr/local --with-ssl
|
||||
make
|
||||
make install
|
||||
# for checkout-action https://github.com/taiki-e/checkout-action/blob/v1.3.0/.github/workflows/ci.yml#L135-L143
|
||||
retry yum install -y openssh-clients perl perl-Error perl-TermReadKey rsync
|
||||
retry rpm -i \
|
||||
https://vault.ius.io/el6/x86_64/packages/p/perl-Git18-1.8.5.5-4.ius.el6.noarch.rpm \
|
||||
https://vault.ius.io/el6/x86_64/packages/g/git18-1.8.5.5-4.ius.el6.x86_64.rpm
|
||||
fi
|
||||
env:
|
||||
CONTAINER: ${{ matrix.container }}
|
||||
if: startsWith(matrix.container, 'centos')
|
||||
# gcc for rustc
|
||||
- run: apk --no-cache add gcc
|
||||
shell: sh
|
||||
if: startsWith(matrix.container, 'alpine')
|
||||
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
|
||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||
- run: rm -- Cargo.toml
|
||||
- name: Generate tool list
|
||||
id: tool-list
|
||||
run: tools/ci/tool-list.sh "${TOOL}" "${OS}" "${BASH}" >>"${GITHUB_OUTPUT}"
|
||||
env:
|
||||
TOOL: ${{ matrix.tool }}
|
||||
OS: ${{ matrix.container || matrix.os }}
|
||||
BASH: ${{ matrix.bash }}
|
||||
- name: Setup MSYS2 bash
|
||||
run: |
|
||||
printf '%s\n' 'C:\msys64\mingw32\bin' >>"${GITHUB_PATH}"
|
||||
printf '%s\n' 'C:\msys64\usr\bin' >>"${GITHUB_PATH}"
|
||||
if: matrix.bash == 'msys2'
|
||||
- name: Setup Cygwin bash
|
||||
run: |
|
||||
choco install --no-progress --requirechecksums cygwin
|
||||
printf '%s\n' 'C:\tools\cygwin\bin' >>"${GITHUB_PATH}"
|
||||
printf '%s\n' 'C:\tools\cygwin\usr\bin' >>"${GITHUB_PATH}"
|
||||
if: matrix.bash == 'cygwin'
|
||||
# remove bash installed by checkout-action
|
||||
- run: apk --no-cache del bash
|
||||
shell: sh
|
||||
if: startsWith(matrix.container, 'alpine')
|
||||
- uses: ./
|
||||
with:
|
||||
tool: ${{ steps.tool-list.outputs.tool }}
|
||||
# Test all shells listed in https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
|
||||
- name: Test bash
|
||||
run: just --version && shfmt --version && protoc --version && rustc --version && cargo --version && rustup --version
|
||||
shell: bash
|
||||
if: matrix.container == ''
|
||||
- name: Test bash
|
||||
run: just --version && shfmt --version
|
||||
shell: bash
|
||||
# TODO: OCI runtime exec failed: exec failed: unable to start container process: exec: "bash": executable file not found in $PATH: unknown
|
||||
if: matrix.container != '' && !startsWith(matrix.container, 'opensuse')
|
||||
- name: Test sh
|
||||
run: just --version && shfmt --version && protoc --version && rustc --version && cargo --version && rustup --version
|
||||
shell: sh
|
||||
if: matrix.container == ''
|
||||
- name: Test sh
|
||||
run: just --version && shfmt --version
|
||||
shell: sh
|
||||
# TODO: OCI runtime exec failed: exec failed: unable to start container process: exec: "sh": executable file not found in $PATH: unknown
|
||||
if: matrix.container != '' && !startsWith(matrix.container, 'opensuse')
|
||||
- name: Test pwsh
|
||||
run: just --version; shfmt --version; protoc --version; rustc --version; cargo --version; rustup --version
|
||||
shell: pwsh
|
||||
if: matrix.os != 'ubuntu-slim' && matrix.container == ''
|
||||
- name: Test powershell
|
||||
run: just --version; shfmt --version; protoc --version; rustc --version; cargo --version; rustup --version
|
||||
shell: powershell
|
||||
if: startsWith(matrix.os, 'windows')
|
||||
- name: Test cmd
|
||||
run: just --version & shfmt --version & protoc --version & rustc --version & cargo --version & rustup --version
|
||||
shell: cmd # zizmor: ignore[misfeature] used for compatibility testing
|
||||
if: startsWith(matrix.os, 'windows')
|
||||
# We use the version output to check the version of cargo-binstall, but they
|
||||
# several times change the version output format in the past so we need to
|
||||
# check it with CI. (e.g., 0.14.0->0.16.0 update change it
|
||||
# from "cargo-binstall <version>" to "<version>")
|
||||
- run: |
|
||||
if [[ "$(cargo-binstall binstall -V)" != "$(jq -r '.latest.version' manifests/cargo-binstall.json)" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
if: matrix.bash != 'cygwin' && matrix.os != 'windows-11-arm' && !startsWith(matrix.container, 'opensuse')
|
||||
|
||||
test-alias:
|
||||
needs: tidy
|
||||
runs-on: ubuntu-24.04
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
|
||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||
- run: rm -- Cargo.toml
|
||||
- run: env
|
||||
- uses: ./
|
||||
with:
|
||||
# NB: Update alias list in tools/ci/release-post-commit.sh, case for aliases in main.sh,
|
||||
# and match for alias for tools/codegen/src/tools-markdown.rs.
|
||||
tool: |
|
||||
nextest
|
||||
taplo-cli
|
||||
typos-cli
|
||||
wasm-bindgen-cli
|
||||
wasmtime-cli
|
||||
- name: Test bash
|
||||
run: cargo-nextest nextest --version && taplo --version
|
||||
shell: bash
|
||||
- name: Test sh
|
||||
run: cargo-nextest nextest --version && taplo --version
|
||||
shell: sh
|
||||
|
||||
test-fallback:
|
||||
needs: tidy
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- fallback: none
|
||||
- fallback: cargo-install
|
||||
- fallback: cargo-binstall
|
||||
- fallback: cargo-binstall
|
||||
version: 0.3
|
||||
runs-on: ubuntu-24.04-arm
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
|
||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||
- run: rm -- Cargo.toml
|
||||
- run: env
|
||||
- uses: ./
|
||||
id: install
|
||||
continue-on-error: ${{ matrix.fallback == 'none' }}
|
||||
with:
|
||||
tool: parse-changelog@${{ matrix.version || '0.4.6' }}
|
||||
fallback: ${{ matrix.fallback }}
|
||||
- run: exit 1
|
||||
if: matrix.fallback == 'none' && steps.install.outcome != 'failure'
|
||||
- name: Test bash
|
||||
run: parse-changelog --version
|
||||
shell: bash
|
||||
if: matrix.fallback != 'none'
|
||||
- name: Test sh
|
||||
run: parse-changelog --version
|
||||
shell: sh
|
||||
if: matrix.fallback != 'none'
|
||||
@@ -1,35 +0,0 @@
|
||||
name: Manifest
|
||||
|
||||
permissions: {}
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- dev
|
||||
- ci-*
|
||||
schedule:
|
||||
- cron: '0 0,3,6,9,12,15,18,21 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
manifest:
|
||||
uses: taiki-e/github-actions/.github/workflows/gen.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
permissions:
|
||||
contents: write # for creating branch for pr
|
||||
pull-requests: write # for gh pr review --approve
|
||||
secrets:
|
||||
PR_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PR_TOKEN_APP_PRIVATE_KEY }}
|
||||
with:
|
||||
script: tools/manifest.sh
|
||||
commit-script: tools/ci/manifest.sh
|
||||
title: Update manifest
|
||||
branch: update-manifest
|
||||
automerge: true
|
||||
install-cosign: true
|
||||
install-parse-changelog: true
|
||||
@@ -1,58 +0,0 @@
|
||||
name: Release
|
||||
|
||||
permissions: {}
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
target:
|
||||
description: Package to be released
|
||||
required: true
|
||||
type: choice
|
||||
options:
|
||||
- install-action
|
||||
- install-action-manifest-schema
|
||||
version:
|
||||
description: Version to be increased
|
||||
required: true
|
||||
type: choice
|
||||
options:
|
||||
- patch
|
||||
- minor
|
||||
- major
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
release:
|
||||
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action'
|
||||
uses: taiki-e/github-actions/.github/workflows/action-release.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
permissions:
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
secrets:
|
||||
PUSH_TOKEN_APP_CLIENT_ID: ${{ secrets.PUSH_TOKEN_APP_CLIENT_ID }}
|
||||
PUSH_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PUSH_TOKEN_APP_PRIVATE_KEY }}
|
||||
with:
|
||||
version: ${{ inputs.version }}
|
||||
post-commit-script: tools/ci/release-post-commit.sh
|
||||
|
||||
release-manifest-schema:
|
||||
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action-manifest-schema'
|
||||
uses: taiki-e/github-actions/.github/workflows/rust-release.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
permissions:
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
id-token: write # for rust-lang/crates-io-auth-action
|
||||
attestations: write # unused (used when options for uploading binaries are set)
|
||||
secrets:
|
||||
PUSH_TOKEN_APP_CLIENT_ID: ${{ secrets.PUSH_TOKEN_APP_CLIENT_ID }}
|
||||
PUSH_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PUSH_TOKEN_APP_PRIVATE_KEY }}
|
||||
with:
|
||||
version: ${{ inputs.version }}
|
||||
tag-prefix: install-action-manifest-schema-
|
||||
package: install-action-manifest-schema
|
||||
changelog: tools/manifest-schema/CHANGELOG.md
|
||||
title: $prefix $version
|
||||
prefix: install-action-manifest-schema
|
||||
commit-prefix: 'manifest-schema: '
|
||||
@@ -1,6 +0,0 @@
|
||||
# zizmor configuration
|
||||
# https://docs.zizmor.sh/configuration/
|
||||
|
||||
rules:
|
||||
anonymous-definition: { disable: true } # This is pedantic/auditor only audit and requires explicitly naming each job, but is usually redundant.
|
||||
dependabot-cooldown: { config: { days: 14 } }
|
||||
@@ -1,8 +0,0 @@
|
||||
target
|
||||
Cargo.lock
|
||||
mutants.out*
|
||||
tmp
|
||||
|
||||
# For platform and editor specific settings, it is recommended to add to
|
||||
# a global .gitignore file.
|
||||
# Refs: https://docs.github.com/en/github/using-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer
|
||||
@@ -1,11 +0,0 @@
|
||||
# https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/Rules.md
|
||||
config:
|
||||
line-length: false # MD013
|
||||
no-duplicate-heading: false # MD024
|
||||
no-blanks-blockquote: false # MD028 (this warns valid GFM alerts usage)
|
||||
no-inline-html: false # MD033
|
||||
no-emphasis-as-heading: false # MD036
|
||||
|
||||
# https://github.com/DavidAnson/markdownlint-cli2#markdownlint-cli2jsonc
|
||||
noBanner: true
|
||||
noProgress: true
|
||||
@@ -1 +0,0 @@
|
||||
manifests/*.json
|
||||
@@ -1,34 +0,0 @@
|
||||
# Rustfmt configuration
|
||||
# https://github.com/rust-lang/rustfmt/blob/HEAD/Configurations.md
|
||||
|
||||
# Rustfmt cannot format long lines inside macros, but this option detects this.
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3391)
|
||||
error_on_line_overflow = true
|
||||
|
||||
# Override the default formatting style.
|
||||
# See https://internals.rust-lang.org/t/running-rustfmt-on-rust-lang-rust-and-other-rust-lang-repositories/8732/81.
|
||||
use_small_heuristics = "Max"
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3370)
|
||||
overflow_delimited_expr = true
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/4991).
|
||||
imports_granularity = "Crate"
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/5083).
|
||||
group_imports = "StdExternalCrate"
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/5081).
|
||||
hex_literal_case = "Upper"
|
||||
|
||||
# Apply rustfmt to more places.
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3348).
|
||||
format_code_in_doc_comments = true
|
||||
|
||||
# Automatically fix deprecated style.
|
||||
use_field_init_shorthand = true
|
||||
use_try_shorthand = true
|
||||
|
||||
# Set the default settings again to always apply the proper formatting without
|
||||
# being affected by the editor settings.
|
||||
edition = "2021"
|
||||
style_edition = "2024"
|
||||
hard_tabs = false
|
||||
newline_style = "Unix"
|
||||
tab_spaces = 4
|
||||
@@ -1,38 +0,0 @@
|
||||
# ShellCheck configuration
|
||||
# https://github.com/koalaman/shellcheck/blob/HEAD/shellcheck.1.md#rc-files
|
||||
|
||||
# See also:
|
||||
# https://github.com/koalaman/shellcheck/wiki/Optional
|
||||
# https://google.github.io/styleguide/shellguide.html
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/Directive#external-sources
|
||||
external-sources=true
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2249
|
||||
# enable=add-default-case
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2244
|
||||
enable=avoid-nullary-conditions
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2312
|
||||
# enable=check-extra-masked-returns
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2310
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2311
|
||||
# enable=check-set-e-suppressed
|
||||
|
||||
# enable=check-unassigned-uppercase
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2230
|
||||
enable=deprecate-which
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2248
|
||||
enable=quote-safe-variables
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2292
|
||||
# https://google.github.io/styleguide/shellguide.html#s6.3-tests
|
||||
enable=require-double-brackets
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2250
|
||||
# https://google.github.io/styleguide/shellguide.html#s5.6-variable-expansion
|
||||
enable=require-variable-braces
|
||||
@@ -1,9 +0,0 @@
|
||||
# Taplo configuration
|
||||
# https://taplo.tamasfe.dev/configuration/formatter-options.html
|
||||
|
||||
[formatting]
|
||||
align_comments = false
|
||||
allowed_blank_lines = 1
|
||||
array_auto_collapse = false
|
||||
array_auto_expand = false
|
||||
indent_string = " "
|
||||
-7715
File diff suppressed because it is too large
Load Diff
-53
@@ -1,53 +0,0 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = ["tools/codegen", "tools/manifest-schema"]
|
||||
|
||||
# This table is shared by projects under github.com/taiki-e.
|
||||
# Expect for unexpected_cfgs.check-cfg, it is not intended for manual editing.
|
||||
[workspace.lints.rust]
|
||||
deprecated_safe = "warn"
|
||||
improper_ctypes = "warn"
|
||||
improper_ctypes_definitions = "warn"
|
||||
non_ascii_idents = "warn"
|
||||
rust_2018_idioms = "warn"
|
||||
single_use_lifetimes = "warn"
|
||||
unexpected_cfgs = { level = "warn", check-cfg = [
|
||||
] }
|
||||
unnameable_types = "warn"
|
||||
unreachable_pub = "warn"
|
||||
unsafe_op_in_unsafe_fn = "warn"
|
||||
[workspace.lints.clippy]
|
||||
all = "warn" # Downgrade deny-by-default lints
|
||||
pedantic = "warn"
|
||||
as_ptr_cast_mut = "warn"
|
||||
as_underscore = "warn"
|
||||
default_union_representation = "warn"
|
||||
inline_asm_x86_att_syntax = "warn"
|
||||
trailing_empty_array = "warn"
|
||||
transmute_undefined_repr = "warn"
|
||||
undocumented_unsafe_blocks = "warn"
|
||||
unused_trait_names = "warn"
|
||||
# Suppress buggy or noisy clippy lints
|
||||
bool_assert_comparison = { level = "allow", priority = 1 }
|
||||
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
|
||||
cast_lossless = { level = "allow", priority = 1 } # suggested code has poor codegen with -C opt-level=0 https://godbolt.org/z/GzTxzbd9q
|
||||
collapsible_match = { level = "allow", priority = 1 }
|
||||
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
|
||||
doc_markdown = { level = "allow", priority = 1 }
|
||||
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
|
||||
incompatible_msrv = { level = "allow", priority = 1 } # buggy: doesn't consider cfg, https://github.com/rust-lang/rust-clippy/issues/12280, https://github.com/rust-lang/rust-clippy/issues/12257#issuecomment-2093667187
|
||||
manual_assert = { level = "allow", priority = 1 }
|
||||
manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395
|
||||
missing_errors_doc = { level = "allow", priority = 1 }
|
||||
module_name_repetitions = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+module_name_repetitions
|
||||
naive_bytecount = { level = "allow", priority = 1 }
|
||||
nonminimal_bool = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool
|
||||
range_plus_one = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+range_plus_one
|
||||
similar_names = { level = "allow", priority = 1 }
|
||||
single_match = { level = "allow", priority = 1 }
|
||||
single_match_else = { level = "allow", priority = 1 }
|
||||
struct_excessive_bools = { level = "allow", priority = 1 }
|
||||
struct_field_names = { level = "allow", priority = 1 }
|
||||
too_many_arguments = { level = "allow", priority = 1 }
|
||||
too_many_lines = { level = "allow", priority = 1 }
|
||||
type_complexity = { level = "allow", priority = 1 }
|
||||
@@ -1,64 +0,0 @@
|
||||
# Development Guide
|
||||
|
||||
## Add support for new tool
|
||||
|
||||
(Example: [ffbd316](https://github.com/taiki-e/install-action/commit/ffbd316e0fe98cb460dae3a66cd2ef9deb398bb1))
|
||||
|
||||
1\. Add base manifest to [`tools/codegen/base`](tools/codegen/base) directory.
|
||||
|
||||
See JSON files in `tools/codegen/base` directory for examples of the manifest.
|
||||
|
||||
2\. Generate manifest with the following command (replace `<tool>` with the tool name).
|
||||
|
||||
```sh
|
||||
./tools/manifest.sh <tool>
|
||||
```
|
||||
|
||||
> If you're having problem with github api rate limit, you can use your GITHUB_TOKEN to increase the rate limit.
|
||||
> If you have `Github CLI` installed (the command `gh`), you can:
|
||||
>
|
||||
> ```sh
|
||||
> GITHUB_TOKEN=$(gh auth token) ./tools/manifest.sh <tool>
|
||||
> ```
|
||||
|
||||
3\. Update `TOOLS.md` with the following command.
|
||||
|
||||
```sh
|
||||
./tools/update-markdown.sh
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
If one of the CI builds fails due to a bin path or release asset_name, fix the problem in the base
|
||||
manifest, and re-run the manifest tool `tools/manifest.sh` to regenerate the manifest json file. The
|
||||
base manifest supports overriding the bin path per platform by adding the `"bin"` / `"asset_name"`
|
||||
to the platform object.
|
||||
|
||||
If CI fails only for containers using older versions of glibc or musl, you may need to add the tool
|
||||
name to one of the `*_incompat` arrays in `tools/ci/tool-list.sh`.
|
||||
|
||||
## Release new version
|
||||
|
||||
Releases are performed by running the [release workflow](https://github.com/taiki-e/install-action/actions/workflows/release.yml) via workflow dispatch. The owner and collaborators can start the release workflow, but the owner’s [approval](https://docs.github.com/en/actions/reference/workflows-and-actions/deployments-and-environments#required-reviewers) is required before the actual release.
|
||||
|
||||
### Minor version vs patch version
|
||||
|
||||
Increase the patch version if only the following changes are included.
|
||||
|
||||
- Update the `@latest` version of the tool.
|
||||
|
||||
Rationale: Normally, tool versions are controlled by the `@<version>` syntax, which is explicitly separated from the versioning of the install-action itself.
|
||||
|
||||
Exception: If the major or minor version of the `cargo-binstall` is updated, the minor version may be increased because the behavior of the fallback may change slightly.
|
||||
|
||||
- Fix regressions or minor bugs.
|
||||
|
||||
Rationale: Semantic Versioning.
|
||||
|
||||
- Improve documentation or diagnostics.
|
||||
|
||||
Rationale: Semantic Versioning.
|
||||
|
||||
Usually increase the minor version otherwise.
|
||||
|
||||
Adding support for a new tool may conflict with existing fallbacks, so it is necessary to increase the minor version.
|
||||
-177
@@ -1,177 +0,0 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
-23
@@ -1,23 +0,0 @@
|
||||
Permission is hereby granted, free of charge, to any
|
||||
person obtaining a copy of this software and associated
|
||||
documentation files (the "Software"), to deal in the
|
||||
Software without restriction, including without
|
||||
limitation the rights to use, copy, modify, merge,
|
||||
publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software
|
||||
is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice
|
||||
shall be included in all copies or substantial portions
|
||||
of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
||||
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
||||
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
||||
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
||||
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
||||
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
@@ -1,200 +0,0 @@
|
||||
<!-- omit in toc -->
|
||||
# install-action
|
||||
|
||||
[](https://github.com/taiki-e/install-action/releases/latest)
|
||||
[](https://github.com/taiki-e/install-action/actions)
|
||||
|
||||
GitHub Action for installing development tools (mainly from GitHub Releases).
|
||||
|
||||
- [Usage](#usage)
|
||||
- [Inputs](#inputs)
|
||||
- [Example workflow](#example-workflow)
|
||||
- [Supported tools](#supported-tools)
|
||||
- [Add support for new tool](#add-support-for-new-tool)
|
||||
- [Security](#security)
|
||||
- [Compatibility](#compatibility)
|
||||
- [Related Projects](#related-projects)
|
||||
- [License](#license)
|
||||
|
||||
## Usage
|
||||
|
||||
### Inputs
|
||||
|
||||
| Name | Required | Description | Type | Default |
|
||||
| ---- | :------: | ----------- | ---- | ------- |
|
||||
| tool | **✓** | Tools to install (whitespace or comma separated list) | String | |
|
||||
| checksum | | Whether to enable checksums (strongly discouraged to disable) | Boolean | `true` |
|
||||
| fallback | | Whether to use fallback (none, cargo-binstall, or cargo-install) | String | `cargo-binstall` |
|
||||
|
||||
### Example workflow
|
||||
|
||||
To install the latest version:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack
|
||||
```
|
||||
|
||||
You can use the shorthand (if you do not need to pin the versions of this action and the installed tool):
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@cargo-hack
|
||||
```
|
||||
|
||||
To install a specific version, use `@version` syntax:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack@0.5.24
|
||||
```
|
||||
|
||||
You can also omit patch version.
|
||||
(You can also omit the minor version if the major version is 1 or greater.)
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack@0.5
|
||||
```
|
||||
|
||||
For some tools, we support installing additional components at the same time by `+<additional>` syntax:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
# Install rust stable with rustfmt component and wasm32-wasip1 target.
|
||||
tool: rust+rustfmt+wasm32-wasip1
|
||||
# When installing another rust version:
|
||||
# tool: rust@nightly + rustfmt + wasm32-wasip1
|
||||
```
|
||||
|
||||
To install multiple tools:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack,cargo-minimal-versions
|
||||
```
|
||||
|
||||
Or:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@cargo-hack
|
||||
- uses: taiki-e/install-action@cargo-minimal-versions
|
||||
```
|
||||
|
||||
Tool names can also be separated with whitespaces (line, space, tab).
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: |
|
||||
cargo-hack
|
||||
cargo-minimal-versions
|
||||
```
|
||||
|
||||
## Supported tools
|
||||
|
||||
See [TOOLS.md](TOOLS.md) for the list of tools that are installed from manifests managed in this action.
|
||||
|
||||
If a tool not included in the list above is specified, this action uses [cargo-binstall] as a fallback.
|
||||
|
||||
If you want to ensure that fallback is not used, use `fallback: none`.
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack
|
||||
# Possible values:
|
||||
# - none: disable all fallback options
|
||||
# - cargo-binstall (default): use cargo-binstall (includes "quickinstall" and "install from source")
|
||||
# - cargo-install: use `cargo install`
|
||||
fallback: none
|
||||
```
|
||||
|
||||
On platforms where cargo-binstall does not provide prebuilt binaries, cargo-install fallback is used instead of cargo-binstall fallback.
|
||||
|
||||
### Add support for new tool
|
||||
|
||||
See the [development guide](DEVELOPMENT.md) for how to add support for new tool.
|
||||
|
||||
## Security
|
||||
|
||||
The `@v<major>` and `@<tool_name>` tags are updated with each release. If you want to enhance workflow stability and security against supply chain attacks, consider using the `@v<major>.<minor>.<patch>` tag or their hash to pin the version and regularly updating with [dependency cooldown]. Since all releases are immutable, pinning the version in either way should have the same effect. Pinning `@<tool_name>` tags by hash is strongly discouraged, as it causes the workflow to reference a [commit that is not present on the repository](https://docs.zizmor.sh/audits/#impostor-commit) when a new version is released.
|
||||
|
||||
The default fallback (cargo-binstall) is often affected by GitHub's API rate limits, so we [pass the `${{ github.token }}` to cargo-binstall](https://github.com/taiki-e/install-action/issues/561). Disabling the cargo-binstall fallback prevent passing token so helps enhance security.
|
||||
|
||||
See the [Supported tools section](#supported-tools) for how to ensure that fallback is not used.
|
||||
|
||||
<!-- omit in toc -->
|
||||
### Security on installation from GitHub Releases
|
||||
|
||||
**Tools covered in this section:** Tools in the [supported tools list](TOOLS.md) where column "Where will it be installed from" is "GitHub Releases".
|
||||
|
||||
This action will download the tool or its installer from GitHub Releases using HTTPS with tlsv1.2+. This is basically considered to be the same level of security as [the recommended installation of rustup](https://www.rust-lang.org/tools/install).
|
||||
|
||||
Additionally, this action will also verify SHA256 checksums for downloaded files for all tools covered in this section. This is enabled by default and can be disabled by setting the `checksum` input option to `false` (strongly discouraged to disable).
|
||||
|
||||
Additionally, we also verify [artifact attestations](https://docs.github.com/en/actions/concepts/security/artifact-attestations) or signature if the tool publishes artifact attestations or distributes signed archives. Verification is done at the stage of getting the checksum, so disabling the checksum will also disable verification.
|
||||
|
||||
When installing with `taiki-e/install-action@<tool_name>`, `tool: <tool_name>`, or `tool: <tool_name>@<omitted_version>`, The tool version is reflects upstream releases with a delay of one to a few days (as with other common package managers that verify checksums or signatures). A delay of at least one day is known as [dependency cooldown] and is intended to mitigate the risk of supply chain attacks (the specific cooldown period may be changed in the future). You can bypass the cooldown by explicitly specifying a version. If you want a longer cooldown, consider using the property described below.
|
||||
|
||||
When installing with `tool: <tool_name>` or `tool: <tool_name>@<omitted_version>`, the tool version is associated with the install-action version, so pinning install-action version with the `@v<major>.<minor>.<patch>` tag or their hash also pins the version of the tool being installed. This also means that if a [dependency cooldown] applies to the action itself, a cooldown of one to a few days longer will apply to the tools installed by that action.
|
||||
|
||||
[dependency cooldown]: https://blog.yossarian.net/2025/11/21/We-should-all-be-using-dependency-cooldowns
|
||||
|
||||
<!-- omit in toc -->
|
||||
### Security on other installation methods
|
||||
|
||||
See the linked documentation for information on security when installed using [rustup](https://rust-lang.github.io/rustup/security.html), [snap](https://snapcraft.io/docs), or [cargo-binstall](https://github.com/cargo-bins/cargo-binstall#faq).
|
||||
|
||||
If the installation method is rustup and rustup is not yet installed, this action downloads [rustup-init for the current platform](https://rust-lang.github.io/rustup/installation/other.html#manual-installation) using HTTPS with tlsv1.2+, verifies SHA256 checksum, and then installs rustup using it.
|
||||
|
||||
If the installation method is cargo-binstall and cargo-binstall is not yet installed or outdated, this action installs cargo-binstall [from GitHub Releases](#security-on-installation-from-github-releases).
|
||||
|
||||
See the [Supported tools section](#supported-tools) for how to ensure that fallback is not used.
|
||||
|
||||
## Compatibility
|
||||
|
||||
This action has been tested for GitHub-hosted runners (Ubuntu, macOS, Windows) and containers (Ubuntu, Debian, Fedora, CentOS, Alma, openSUSE, Arch, Alpine).
|
||||
|
||||
On Linux, if any required tools are missing, this action will attempt to install them from distro's package manager, so no pre-setup is usually required (except for CentOS or Debian 10 (or older) or very old distro described below, which was already EoL and needs to use vault/archive repos -- see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of setup).
|
||||
|
||||
On other platforms, at least the following tools are required:
|
||||
|
||||
- bash 3.2+
|
||||
- jq 1.3+ (only on non-Windows platforms)
|
||||
- curl 7.34+ (or RHEL7/CentOS7's patched curl 7.29)
|
||||
|
||||
Known environments affected by the above version requirements are CentOS 6 (EoL on 2020-11) using curl 7.19, and Ubuntu 12.04 (EoL on 2017-04) using curl 7.22 (see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of workaround).
|
||||
|
||||
Note that what this action installs for its setup (such as above tools) is considered an implementation detail if they are installed by this action's side, and there is no guarantee that they will be available in subsequent steps, because this action is not an action for installing those tools.
|
||||
|
||||
## Related Projects
|
||||
|
||||
- [cache-cargo-install-action]: GitHub Action for `cargo install` with cache.
|
||||
- [create-gh-release-action]: GitHub Action for creating GitHub Releases based on changelog.
|
||||
- [upload-rust-binary-action]: GitHub Action for building and uploading Rust binary to GitHub Releases.
|
||||
- [setup-cross-toolchain-action]: GitHub Action for setup toolchains for cross compilation and cross testing for Rust.
|
||||
- [checkout-action]: GitHub Action for checking out a repository. (Simplified actions/checkout alternative that does not depend on Node.js.)
|
||||
|
||||
[cache-cargo-install-action]: https://github.com/taiki-e/cache-cargo-install-action
|
||||
[cargo-binstall]: https://github.com/cargo-bins/cargo-binstall
|
||||
[checkout-action]: https://github.com/taiki-e/checkout-action
|
||||
[create-gh-release-action]: https://github.com/taiki-e/create-gh-release-action
|
||||
[setup-cross-toolchain-action]: https://github.com/taiki-e/setup-cross-toolchain-action
|
||||
[upload-rust-binary-action]: https://github.com/taiki-e/upload-rust-binary-action
|
||||
|
||||
## License
|
||||
|
||||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or
|
||||
[MIT license](LICENSE-MIT) at your option.
|
||||
|
||||
Each of the tools installed by this action has a different license. See the
|
||||
[Supported tools](#supported-tools) section for more information.
|
||||
|
||||
Unless you explicitly state otherwise, any contribution intentionally submitted
|
||||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall
|
||||
be dual licensed as above, without any additional terms or conditions.
|
||||
@@ -1,109 +0,0 @@
|
||||
# Tools
|
||||
|
||||
This is a list of tools that are installed from manifests managed in this action.
|
||||
|
||||
If a tool not included in the list below is specified, this action uses [cargo-binstall] as a fallback.
|
||||
|
||||
See the [Supported tools section in README.md](README.md#supported-tools) for how to ensure that fallback is not used.
|
||||
|
||||
> If `$CARGO_HOME/bin` is not available, Rust-related binaries will be installed to `$HOME/.cargo/bin`.<br>
|
||||
> If `$HOME/.cargo/bin` is not available, Rust-related binaries will be installed to `$HOME/.install-action/bin`.<br>
|
||||
|
||||
> [!WARNING]
|
||||
> Please note that the fact that a specific tool is listed here does **NOT** mean that the maintainer trusts the tool for safety or has reviewed its code.
|
||||
|
||||
| Name | Where binaries will be installed | Where will it be installed from | Supported platform | License | Note |
|
||||
| ---- | -------------------------------- | ------------------------------- | ------------------ | ------- | ---- |
|
||||
| [**auto-doc**](https://github.com/tj-actions/auto-doc) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/tj-actions/auto-doc/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/tj-actions/auto-doc/blob/main/LICENSE) | |
|
||||
| [**biome**](https://biomejs.dev) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/biomejs/biome/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT) | |
|
||||
| [**cargo-apple-runner**](https://github.com/madsmtm/cargo-apple-runner) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/madsmtm/cargo-apple-runner/releases) | macOS | [Zlib](https://github.com/madsmtm/cargo-apple-runner/blob/main/LICENSE-ZLIB.txt) OR [Apache-2.0](https://github.com/madsmtm/cargo-apple-runner/blob/main/LICENSE-APACHE.txt) OR [MIT](https://github.com/madsmtm/cargo-apple-runner/blob/main/LICENSE-MIT.txt) | |
|
||||
| [**cargo-audit**](https://github.com/rustsec/rustsec/tree/HEAD/cargo-audit) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rustsec/rustsec/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rustsec/rustsec/blob/main/cargo-audit/LICENSE-APACHE) OR [MIT](https://github.com/rustsec/rustsec/blob/main/cargo-audit/LICENSE-MIT) | |
|
||||
| [**cargo-auditable**](https://github.com/rust-secure-code/cargo-auditable) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-secure-code/cargo-auditable/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/master/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/master/LICENSE-MIT) | |
|
||||
| [**cargo-binstall**](https://github.com/cargo-bins/cargo-binstall) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cargo-bins/cargo-binstall/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/main/crates/bin/LICENSE) | |
|
||||
| [**cargo-careful**](https://github.com/RalfJung/cargo-careful) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/RalfJung/cargo-careful/releases) | Linux, macOS, Windows | [MIT](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-APACHE) | |
|
||||
| [**cargo-cyclonedx**](https://github.com/CycloneDX/cyclonedx-rust-cargo) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-rust-cargo/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE) | |
|
||||
| [**cargo-deadlinks**](https://github.com/deadlinks/cargo-deadlinks) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/deadlinks/cargo-deadlinks/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-deb**](https://github.com/kornelski/cargo-deb) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/kornelski/cargo-deb/releases) | Linux | [MIT](https://github.com/kornelski/cargo-deb/blob/main/LICENSE) | |
|
||||
| [**cargo-deny**](https://github.com/EmbarkStudios/cargo-deny) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/EmbarkStudios/cargo-deny/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-dinghy**](https://github.com/sonos/dinghy) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sonos/dinghy/releases) | Linux, macOS | [MIT](https://github.com/sonos/dinghy/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/sonos/dinghy/blob/main/LICENSE-APACHE) | |
|
||||
| [**cargo-export**](https://github.com/bazhenov/cargo-export) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bazhenov/cargo-export/releases) | Linux, macOS, Windows | [MIT](https://github.com/bazhenov/cargo-export/blob/master/LICENSE) | |
|
||||
| [**cargo-hack**](https://github.com/taiki-e/cargo-hack) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-hack/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-insta**](https://insta.rs/) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/mitsuhiko/insta/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/mitsuhiko/insta/blob/master/LICENSE) | |
|
||||
| [**cargo-lambda**](https://github.com/cargo-lambda/cargo-lambda) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cargo-lambda/cargo-lambda/releases) | Linux, macOS, Windows | [MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE) | |
|
||||
| [**cargo-llvm-cov**](https://github.com/taiki-e/cargo-llvm-cov) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-llvm-cov/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-machete**](https://github.com/bnjbvr/cargo-machete) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bnjbvr/cargo-machete/releases) | Linux, macOS, Windows | [MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md) | |
|
||||
| [**cargo-make**](https://github.com/sagiegurari/cargo-make) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sagiegurari/cargo-make/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE) | |
|
||||
| [**cargo-minimal-versions**](https://github.com/taiki-e/cargo-minimal-versions) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-minimal-versions/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-mutants**](https://github.com/sourcefrog/cargo-mutants) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sourcefrog/cargo-mutants/releases) | Linux, macOS, Windows | [MIT](https://github.com/sourcefrog/cargo-mutants/blob/main/LICENSE) | |
|
||||
| [**cargo-neat**](https://github.com/killzoner/cargo-neat) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/killzoner/cargo-neat/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-nextest**](https://github.com/nextest-rs/nextest) (alias: `nextest`) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/nextest-rs/nextest/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-no-dev-deps**](https://github.com/taiki-e/cargo-no-dev-deps) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-no-dev-deps/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/cargo-no-dev-deps/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-no-dev-deps/blob/main/LICENSE-MIT) | |
|
||||
| [**cargo-rdme**](https://github.com/orium/cargo-rdme) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/orium/cargo-rdme/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/orium/cargo-rdme/blob/main/LICENSE.md) | |
|
||||
| [**cargo-semver-checks**](https://github.com/obi1kenobi/cargo-semver-checks) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/obi1kenobi/cargo-semver-checks/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-shear**](https://github.com/Boshen/cargo-shear) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/Boshen/cargo-shear/releases) | Linux, macOS, Windows | [MIT](https://github.com/Boshen/cargo-shear/blob/main/LICENSE) | |
|
||||
| [**cargo-sort**](https://github.com/DevinR528/cargo-sort) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/DevinR528/cargo-sort/releases) | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/DevinR528/cargo-sort/blob/v1.0.9/Cargo.toml#L5) | |
|
||||
| [**cargo-spellcheck**](https://github.com/drahnr/cargo-spellcheck) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/drahnr/cargo-spellcheck/releases) | Linux, Windows | [LGPLv2.1](https://github.com/drahnr/cargo-spellcheck/blob/master/LICENSE-LGPL) | |
|
||||
| [**cargo-tarpaulin**](https://github.com/xd009642/tarpaulin) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/xd009642/tarpaulin/releases) | Linux, macOS, Windows | [MIT](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-MIT) OR [Apache-2.0](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-APACHE) | |
|
||||
| [**cargo-udeps**](https://github.com/est31/cargo-udeps) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/est31/cargo-udeps/releases) | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/master/LICENSE) | |
|
||||
| [**cargo-valgrind**](https://github.com/jfrimmel/cargo-valgrind) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/jfrimmel/cargo-valgrind/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cargo-xwin**](https://github.com/rust-cross/cargo-xwin) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-cross/cargo-xwin/releases) | Linux, macOS, Windows | [MIT](https://github.com/rust-cross/cargo-xwin/blob/main/LICENSE) | |
|
||||
| [**cargo-zigbuild**](https://github.com/rust-cross/cargo-zigbuild) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-cross/cargo-zigbuild/releases) | Linux, macOS, Windows | [MIT](https://github.com/rust-cross/cargo-zigbuild/blob/main/LICENSE) | |
|
||||
| [**coreutils**](https://github.com/uutils/coreutils) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/uutils/coreutils/releases) | Linux, macOS, Windows | [MIT](https://github.com/uutils/coreutils/blob/main/LICENSE) | |
|
||||
| [**cosign**](https://github.com/sigstore/cosign) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/sigstore/cosign/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/sigstore/cosign/blob/main/LICENSE) | |
|
||||
| [**covgate**](https://github.com/jesse-black/covgate) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/jesse-black/covgate/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/jesse-black/covgate/blob/main/LICENSE) | |
|
||||
| [**cross**](https://github.com/cross-rs/cross) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cross-rs/cross/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**cyclonedx**](https://github.com/CycloneDX/cyclonedx-cli) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-cli/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-cli/blob/main/LICENSE) | |
|
||||
| [**deepsource**](https://github.com/DeepSourceCorp/cli) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/DeepSourceCorp/cli/releases) | Linux, macOS, Windows | [BSD-2-Clause](https://github.com/DeepSourceCorp/cli/blob/master/LICENSE) | |
|
||||
| [**dprint**](https://github.com/dprint/dprint) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/dprint/dprint/releases) | Linux, macOS, Windows | [MIT](https://github.com/dprint/dprint/blob/main/LICENSE) | |
|
||||
| [**earthly**](https://github.com/earthly/earthly) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/earthly/earthly/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/earthly/earthly/blob/main/LICENSE) | |
|
||||
| [**editorconfig-checker**](https://github.com/editorconfig-checker/editorconfig-checker) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/editorconfig-checker/editorconfig-checker/releases) | Linux, macOS, Windows | [MIT](https://github.com/editorconfig-checker/editorconfig-checker/blob/main/LICENSE) | |
|
||||
| [**espup**](https://github.com/esp-rs/espup) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/esp-rs/espup/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**git-cliff**](https://github.com/orhun/git-cliff) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/orhun/git-cliff/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**grcov**](https://github.com/mozilla/grcov) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/mozilla/grcov/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/mozilla/grcov/blob/master/LICENSE-MPL-2.0) | |
|
||||
| [**gungraun-runner**](https://gungraun.github.io/gungraun/) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/gungraun/gungraun/releases) | Linux | [Apache-2.0](https://github.com/gungraun/gungraun/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/gungraun/gungraun/blob/main/LICENSE-MIT) | |
|
||||
| [**hyperfine**](https://github.com/sharkdp/hyperfine) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sharkdp/hyperfine/releases) | Linux, macOS, Windows | [MIT](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-APACHE) | |
|
||||
| [**iai-callgrind-runner (deprecated)**](https://gungraun.github.io/gungraun/) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/iai-callgrind/iai-callgrind/releases) | Linux | [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) | renamed to `gungraun-runner` |
|
||||
| [**jaq**](https://github.com/01mf02/jaq) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/01mf02/jaq/releases) | Linux, macOS, Windows | [MIT](https://github.com/01mf02/jaq/blob/main/LICENSE-MIT) | |
|
||||
| [**just**](https://github.com/casey/just) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/casey/just/releases) | Linux, macOS, Windows | [CC0-1.0](https://github.com/casey/just/blob/master/LICENSE) | |
|
||||
| [**knope**](https://github.com/knope-dev/knope) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/knope-dev/knope/releases) | Linux, macOS, Windows | [MIT](https://github.com/knope-dev/knope/blob/main/LICENSE) | |
|
||||
| [**martin**](https://maplibre.org/martin/) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/maplibre/martin/releases) | Linux, macOS | [MIT](https://github.com/maplibre/martin/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/maplibre/martin/blob/main/LICENSE-APACHE) | |
|
||||
| [**mdbook**](https://github.com/rust-lang/mdBook) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-lang/mdBook/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/rust-lang/mdBook/blob/master/LICENSE) | |
|
||||
| [**mdbook-alerts (deprecated)**](https://github.com/lambdalisue/rs-mdbook-alerts) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/lambdalisue/rs-mdbook-alerts/releases) | Linux, macOS, Windows | [MIT](https://github.com/lambdalisue/rs-mdbook-alerts/blob/main/LICENSE) | included in `mdbook` |
|
||||
| [**mdbook-d2**](https://github.com/danieleades/mdbook-d2) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/danieleades/mdbook-d2/releases) | Linux, macOS, Windows | [MIT](https://github.com/danieleades/mdbook-d2/blob/main/LICENSE) | |
|
||||
| [**mdbook-linkcheck**](https://github.com/Michael-F-Bryan/mdbook-linkcheck) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases) | Linux, macOS, Windows | [MIT](https://github.com/Michael-F-Bryan/mdbook-linkcheck/blob/master/LICENSE) | |
|
||||
| [**mdbook-mermaid**](https://github.com/badboy/mdbook-mermaid) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/badboy/mdbook-mermaid/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/badboy/mdbook-mermaid/blob/main/LICENSE) | |
|
||||
| [**mdbook-mermaid-ssr**](https://github.com/CommanderStorm/mdbook-mermaid-ssr) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CommanderStorm/mdbook-mermaid-ssr/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/CommanderStorm/mdbook-mermaid-ssr/blob/main/LICENSE) | |
|
||||
| [**mise**](https://github.com/jdx/mise) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/jdx/mise/releases) | Linux, macOS, Windows | [MIT](https://github.com/jdx/mise/blob/main/LICENSE) | |
|
||||
| [**osv-scanner**](https://github.com/google/osv-scanner) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/google/osv-scanner/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/google/osv-scanner/blob/main/LICENSE) | |
|
||||
| [**parse-changelog**](https://github.com/taiki-e/parse-changelog) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/parse-changelog/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-MIT) | |
|
||||
| [**parse-dockerfile**](https://github.com/taiki-e/parse-dockerfile) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/parse-dockerfile/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**prek**](https://github.com/j178/prek) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/j178/prek/releases) | Linux, macOS, Windows | [MIT](https://github.com/j178/prek/blob/master/LICENSE) | |
|
||||
| [**protoc**](https://github.com/protocolbuffers/protobuf) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/protocolbuffers/protobuf/releases) | Linux, macOS, Windows | [BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/main/LICENSE) | |
|
||||
| [**rclone**](https://github.com/rclone/rclone) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/rclone/rclone/releases) | Linux, macOS, Windows | [MIT](https://github.com/rclone/rclone/blob/master/COPYING) | |
|
||||
| [**release-plz**](https://release-plz.dev/) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/release-plz/release-plz/releases) | Linux, macOS, Windows | [MIT](https://github.com/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE) | |
|
||||
| [**rust**](https://rust-lang.org) | `$CARGO_HOME/bin` | rustup | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/rust-lang/rust/blob/main/COPYRIGHT) | |
|
||||
| [**sccache**](https://github.com/mozilla/sccache) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/mozilla/sccache/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE) | |
|
||||
| [**shellcheck**](https://www.shellcheck.net) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/koalaman/shellcheck/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/koalaman/shellcheck/blob/master/LICENSE) | |
|
||||
| [**shfmt**](https://github.com/mvdan/sh) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/mvdan/sh/releases) | Linux, macOS, Windows | [BSD-3-Clause](https://github.com/mvdan/sh/blob/master/LICENSE) | |
|
||||
| [**syft**](https://github.com/anchore/syft) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/anchore/syft/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE) | |
|
||||
| [**taplo**](https://github.com/tamasfe/taplo) (alias: `taplo-cli`) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/tamasfe/taplo/releases) | Linux, macOS, Windows | [MIT](https://github.com/tamasfe/taplo/blob/master/LICENSE) | |
|
||||
| [**tombi**](https://tombi-toml.github.io/tombi/) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/tombi-toml/tombi/releases) | Linux, macOS, Windows | [MIT](https://github.com/tombi-toml/tombi/blob/main/LICENSE) | |
|
||||
| [**trivy**](https://github.com/aquasecurity/trivy) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/aquasecurity/trivy/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/aquasecurity/trivy/blob/main/LICENSE) | |
|
||||
| [**trunk**](https://github.com/trunk-rs/trunk) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/trunk-rs/trunk/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**typos**](https://github.com/crate-ci/typos) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/crate-ci/typos/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**ubi**](https://github.com/houseabsolute/ubi) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/houseabsolute/ubi/releases) | Linux, macOS, Windows | [MIT](https://github.com/houseabsolute/ubi/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/houseabsolute/ubi/blob/master/LICENSE-APACHE) | |
|
||||
| [**uv**](https://github.com/astral-sh/uv) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/astral-sh/uv/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**vacuum**](https://github.com/daveshanley/vacuum) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/daveshanley/vacuum/releases) | Linux, macOS, Windows | [MIT](https://github.com/daveshanley/vacuum/blob/main/LICENSE) | |
|
||||
| [**valgrind**](https://valgrind.org/) | `/snap/bin` | [snap](https://snapcraft.io/install/valgrind/ubuntu) | Linux | [GPL-2.0](https://sourceware.org/git/?p=valgrind.git;a=blob;f=COPYING;hb=HEAD) | |
|
||||
| [**wait-for-them**](https://github.com/shenek/wait-for-them) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/shenek/wait-for-them/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/shenek/wait-for-them/blob/v0.4.0/Cargo.toml#L7) | |
|
||||
| [**wash**](https://github.com/wasmCloud/wasmCloud) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/wasmCloud/wasmCloud/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/wasmCloud/wasmCloud/blob/main/LICENSE) | |
|
||||
| [**wasm-bindgen**](https://github.com/wasm-bindgen/wasm-bindgen) (alias: `wasm-bindgen-cli`) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/wasm-bindgen/wasm-bindgen/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**wasm-pack**](https://github.com/wasm-bindgen/wasm-pack) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/wasm-bindgen/wasm-pack/releases) | Linux, macOS, Windows | [MIT](https://github.com/wasm-bindgen/wasm-pack/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/wasm-bindgen/wasm-pack/blob/master/LICENSE-APACHE) | |
|
||||
| [**wasm-tools**](https://github.com/bytecodealliance/wasm-tools) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bytecodealliance/wasm-tools/releases) | Linux, macOS, Windows | [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) | |
|
||||
| [**wasmtime**](https://github.com/bytecodealliance/wasmtime) (alias: `wasmtime-cli`) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bytecodealliance/wasmtime/releases) | Linux, macOS, Windows | [Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE) | |
|
||||
| [**xbuild**](https://github.com/rust-mobile/xbuild) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-mobile/xbuild/releases) | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/rust-mobile/xbuild/blob/v0.2.0/xbuild/Cargo.toml#L7) | |
|
||||
| [**xh**](https://github.com/ducaale/xh) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/ducaale/xh/releases) | Linux, macOS, Windows | [MIT](https://github.com/ducaale/xh/blob/master/LICENSE) | |
|
||||
| [**zizmor**](https://github.com/zizmorcore/zizmor) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/zizmorcore/zizmor/releases) | Linux, macOS, Windows | [MIT](https://github.com/zizmorcore/zizmor/blob/main/LICENSE) | |
|
||||
| [**zola**](https://github.com/getzola/zola) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/getzola/zola/releases) | Linux, macOS, Windows | [MIT](https://github.com/getzola/zola/blob/master/LICENSE) | |
|
||||
|
||||
[cargo-binstall]: https://github.com/cargo-bins/cargo-binstall
|
||||
-97
@@ -1,97 +0,0 @@
|
||||
name: Install development tools
|
||||
description: GitHub Action for installing development tools
|
||||
|
||||
inputs:
|
||||
tool:
|
||||
description: Tools to install (whitespace or comma separated list)
|
||||
required: true
|
||||
# default: #publish:tool
|
||||
checksum:
|
||||
description: Whether to enable checksums (strongly discouraged to disable)
|
||||
required: false
|
||||
default: 'true'
|
||||
fallback:
|
||||
description: Whether to use fallback (none, cargo-binstall, or cargo-install)
|
||||
required: false
|
||||
default: 'cargo-binstall'
|
||||
|
||||
# Note:
|
||||
# - inputs.* should be manually mapped to INPUT_* due to https://github.com/actions/runner/issues/665
|
||||
# - Use GITHUB_*/RUNNER_* instead of github.*/runner.* due to https://github.com/actions/runner/issues/2185
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- run: |
|
||||
bail() {
|
||||
printf '::error::install-action: %s\n' "$*"
|
||||
exit 1
|
||||
}
|
||||
# If /bin/sh is dash, environment variable containing % is not imported, but is fine
|
||||
# because it also means that it will not be exposed to subprocess.
|
||||
if /usr/bin/env | grep -Eq '^BASH_FUNC_'; then
|
||||
bail 'bash function injection via BASH_FUNC_ environment variable is not allowed for security reasons'
|
||||
fi
|
||||
if ! command -v bash >/dev/null; then
|
||||
if grep -Eq '^ID=alpine' /etc/os-release; then
|
||||
printf '::group::Install packages required for install-action (bash)\n'
|
||||
# NB: sync with apk_install in main.sh
|
||||
if command -v sudo >/dev/null; then
|
||||
sudo apk --no-cache add bash
|
||||
elif command -v doas >/dev/null; then
|
||||
doas apk --no-cache add bash
|
||||
else
|
||||
apk --no-cache add bash
|
||||
fi
|
||||
printf '::endgroup::\n'
|
||||
else
|
||||
bail 'this action requires bash'
|
||||
fi
|
||||
fi
|
||||
bash --noprofile --norc "${GITHUB_ACTION_PATH:?}/main.sh"
|
||||
shell: /usr/bin/env -u ENV -u BASH_ENV -u CDPATH -u SHELLOPTS -u BASHOPTS /bin/sh -eu {0} # zizmor: ignore[misfeature] false positive
|
||||
env:
|
||||
# NB: Sync with Windows case.
|
||||
INPUT_TOOL: ${{ inputs.tool }}
|
||||
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
||||
INPUT_FALLBACK: ${{ inputs.fallback }}
|
||||
DEFAULT_GITHUB_TOKEN: ${{ inputs.fallback == 'cargo-binstall' && github.token || '' }}
|
||||
ACTION_USER_AGENT: ${{ github.action_repository }} (${{ github.action_ref }})
|
||||
RUNNER_OS: ${{ runner.os }}
|
||||
RUNNER_ARCH: ${{ runner.arch }}
|
||||
if: runner.os != 'Windows'
|
||||
# Use pwsh and retry on bash startup failure to work around windows-11-arm runner bug:
|
||||
# https://github.com/actions/partner-runner-images/issues/169
|
||||
- run: |
|
||||
Set-StrictMode -Version Latest
|
||||
$remove_env = @('ENV','BASH_ENV','CDPATH','SHELLOPTS','BASHOPTS','BASH_FUNC_*')
|
||||
foreach ($name in $remove_env) {
|
||||
if (Test-Path "Env:$name") { Remove-Item "Env:\$name" }
|
||||
}
|
||||
for ($i=1; $i -le 10; $i++) {
|
||||
$prev_err_action = $ErrorActionPreference
|
||||
$ErrorActionPreference = "Continue"
|
||||
& bash --noprofile --norc "$env:GITHUB_ACTION_PATH\main.sh"
|
||||
$code = $LASTEXITCODE
|
||||
$ErrorActionPreference = "$prev_err_action"
|
||||
if (Test-Path "$env:USERPROFILE\.install-action\init") {
|
||||
# If bash started successfully, main.sh creates init file.
|
||||
Remove-Item "$env:USERPROFILE\.install-action\init" -Force
|
||||
exit $code
|
||||
}
|
||||
if ($i -lt 10) {
|
||||
Write-Output "::warning::install-action: installation failed due to bash startup failure (<https://github.com/actions/partner-runner-images/issues/169>); retrying..."
|
||||
}
|
||||
}
|
||||
Write-Output "::error::install-action: installation failed due to bash startup failure (<https://github.com/actions/partner-runner-images/issues/169>); this maybe resolved by re-running job"
|
||||
exit 1
|
||||
shell: pwsh
|
||||
env:
|
||||
# NB: Sync with non-Windows case.
|
||||
INPUT_TOOL: ${{ inputs.tool }}
|
||||
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
||||
INPUT_FALLBACK: ${{ inputs.fallback }}
|
||||
DEFAULT_GITHUB_TOKEN: ${{ inputs.fallback == 'cargo-binstall' && github.token || '' }}
|
||||
ACTION_USER_AGENT: ${{ github.action_repository }} (${{ github.action_ref }})
|
||||
RUNNER_OS: ${{ runner.os }}
|
||||
RUNNER_ARCH: ${{ runner.arch }}
|
||||
if: runner.os == 'Windows'
|
||||
@@ -26,6 +26,7 @@
|
||||
"bin": "auto-doc.exe"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/tj-actions/auto-doc/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.6.0"
|
||||
},
|
||||
@@ -1,128 +1,15 @@
|
||||
{
|
||||
"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.15"
|
||||
"version": "2.4.11"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.4.15"
|
||||
"version": "2.4.11"
|
||||
},
|
||||
"2.4": {
|
||||
"version": "2.4.15"
|
||||
},
|
||||
"2.4.15": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.15/biome-linux-x64-musl",
|
||||
"etag": "0x8DEADEDC0FCFEE0",
|
||||
"hash": "60b19c9c7e611e1b18268b3d9baf9ec903f6ca184c3a8e81845f68fd3b621f49",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.15/biome-darwin-x64",
|
||||
"etag": "0x8DEADEDC08631B9",
|
||||
"hash": "fab8a39dc54a38f820b2952f7f80e7e8993483b7501a4f19d1cbf4361128a07d",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.15/biome-win32-x64.exe",
|
||||
"etag": "0x8DEADEDC0D8D6B7",
|
||||
"hash": "a77a61537dfc6f923b5b1fc912bc2e0ed46a83c3303ca973695d7f4f8351c71e",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.15/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEADEDC081C9DE",
|
||||
"hash": "9dfd5ab51e493864777fc77447d8416cc19d70d644d900048e703aad95afe9d2",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.15/biome-darwin-arm64",
|
||||
"etag": "0x8DEADEDC063B561",
|
||||
"hash": "b2c65601b3b0fcd0606c4152f20e3774aadf0b73ba791b8dbcff7e6f1a4fa17a",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.15/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEADEDC0A3AAA6",
|
||||
"hash": "52f859229094fb75198f3649036b38b4f6aae48b4040c5dec8d1f29a905c69f6",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.4.14": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.14/biome-linux-x64-musl",
|
||||
"etag": "0x8DEA7B7382C3BD2",
|
||||
"hash": "c3b6f38eccb72a9d41afb5a3b38976f590380111cb3e878bf9121f998e8c274e",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.14/biome-darwin-x64",
|
||||
"etag": "0x8DEA7B738245577",
|
||||
"hash": "dc835f90255a5c9c1734d3adb07ac142396187953545029e0aeab82177e466c6",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.14/biome-win32-x64.exe",
|
||||
"etag": "0x8DEA7B738D2BCE3",
|
||||
"hash": "6aad48b69bb0699394f93c34fc700bf1b20130aeb7101e52fccf5d306b65ab92",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.14/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEA7B738307CC9",
|
||||
"hash": "756b7d7dbd3d5d857c40638776f930c234bc69f6f5c0ed13c8acedfb87147bac",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.14/biome-darwin-arm64",
|
||||
"etag": "0x8DEA7B73802C26A",
|
||||
"hash": "13895170d26b0a9818532b84f33e04a2980b46cbb7e86d43ecc606c6bd1b1e63",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.14/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEA7B738F3DB34",
|
||||
"hash": "1f2d2f78dcf05ea708314608ff567b3412a85bfcd8c09ec555cee0b8a60bf5ae",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.4.13": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.13/biome-linux-x64-musl",
|
||||
"etag": "0x8DEA14EF44907A9",
|
||||
"hash": "a1939a267e2077dadd9134cfa582a2f3ca153f06f882c30d37314fea187667fc",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.13/biome-darwin-x64",
|
||||
"etag": "0x8DEA14EF441E3C2",
|
||||
"hash": "2180d3467d67773daccea90855d8d65e1026ffa429ceba3edcb4553c8664627b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.13/biome-win32-x64.exe",
|
||||
"etag": "0x8DEA14EF473DF10",
|
||||
"hash": "bc7d1f26be936aec1423f70ed94fd8c5aa80c3ba199d991dcaf13476daa5f786",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.13/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEA14EF500B376",
|
||||
"hash": "948bbe5fb63d95372d391d42694ce5d553032f66043a178221166da2a76e8614",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.13/biome-darwin-arm64",
|
||||
"etag": "0x8DEA14EF41FB52C",
|
||||
"hash": "22eb03789d405ea84e7b01192a9b5a4885802468dd0f369613837f5b5935178b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.13/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEA14EF44782BD",
|
||||
"hash": "4ebfc108a649076b45d04ebb2a6b8a6642ab2180da893b70a5c42b15d4154da6",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
"version": "2.4.11"
|
||||
},
|
||||
"2.4.12": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -22,6 +22,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -26,6 +26,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -18,11 +18,9 @@
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v${version}/cargo-binstall-aarch64-pc-windows-msvc.zip"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v${version}/cargo-binstall-riscv64gc-unknown-linux-musl.tgz"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.18.1"
|
||||
},
|
||||
@@ -50,10 +48,6 @@
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9959EAAC5732",
|
||||
"hash": "c6873e81457d9e44973a8e9a849795f2c83765fce0af8ad68b597b5b40dec418"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DE9959DFE57CE6",
|
||||
"hash": "3eb039f14fa71dd27b614bf692f0bffd4ba087204829805d54b014646aed7c14"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
@@ -14,6 +14,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -6,29 +6,15 @@
|
||||
"bin": "usr/bin/cargo-deb"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/kornelski/cargo-deb/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.7.0"
|
||||
"version": "3.6.3"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.7.0"
|
||||
},
|
||||
"3.7": {
|
||||
"version": "3.7.0"
|
||||
},
|
||||
"3.7.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA87CE0C3370E",
|
||||
"hash": "e61273031c84b6ef2ca3fb259b594d34d2b592e1c6bc378c1249380c53e5b05e"
|
||||
}
|
||||
"version": "3.6.3"
|
||||
},
|
||||
"3.6": {
|
||||
"version": "3.6.4"
|
||||
},
|
||||
"3.6.4": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA528E26D5EF0",
|
||||
"hash": "3a95dff12baba70efe3a050a3ad94149ace73114c5af988d34073183e09dd584"
|
||||
}
|
||||
"version": "3.6.3"
|
||||
},
|
||||
"3.6.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
@@ -22,77 +22,12 @@
|
||||
"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.6"
|
||||
"version": "0.19.1"
|
||||
},
|
||||
"0.19": {
|
||||
"version": "0.19.6"
|
||||
},
|
||||
"0.19.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAF4B78F6F2BB",
|
||||
"hash": "0021d321c781f0159a150ca308859ad93ccce64a887b22ad2e129f096a8a2c07"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAF4B5F6AE77A",
|
||||
"hash": "2526753e4f10ce8a0c9c45ba634e59d7c07e4aace9a21304a0fa86fb089b7039"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAF4BAABFE5E0",
|
||||
"hash": "e334e1f7d6f8b9ed47a9ff9fa9f3c3190138b4e5e2cc4cdbc23ceea943cd253b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAF4B908B1216",
|
||||
"hash": "d27bdcc361099068db61652761633e338372d4fa318d38944f09af3b1639d52a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAF4B720C018A",
|
||||
"hash": "1eca0934ec7bf12d8b9a8303335e1fff8bcc0767476947a50d3357858eded222"
|
||||
}
|
||||
},
|
||||
"0.19.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEADC4AFCE086D",
|
||||
"hash": "5ea64ae09959b5fe1072d898f95caaa89b374678ba6728d5e9ed1366745479b0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEADC4A43426A1",
|
||||
"hash": "36102b6ab83a546036ada57526227317a7827e1788ce39ac6df1c9102b86fa10"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEADC4E4CE23BB",
|
||||
"hash": "390159ef49444b9b0b98ce36b35bc068180103d078b73f0d3d67872eff375e3e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEADC4AB47CBC0",
|
||||
"hash": "f23d2b4e343a54af3d925b557294c8c9d00dacb7bb98663f995a4427efebe1db"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEADC4A1166B57",
|
||||
"hash": "0cf28e019edb3708ba9755b8c822864ee6d6175d6fc167956972e78ea9ff0be3"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
"version": "0.19.1"
|
||||
},
|
||||
"0.19.2": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -10,6 +10,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -22,6 +22,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
@@ -18,6 +18,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -18,6 +18,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -29,87 +29,12 @@
|
||||
"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.7"
|
||||
"version": "0.8.5"
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.7"
|
||||
},
|
||||
"0.8.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB08B2B1E1C29",
|
||||
"hash": "967b5cc996c29d8baa52bbb4595ef1f53af35255af8e2036ddbc6468d7b523c7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB08B20CA17C7",
|
||||
"hash": "288ce0cb976207a9a1ad5af4d7ec9a06c9af116727066fb2287df8d9d1026be9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB08BA5F00B0A",
|
||||
"hash": "56bce7aef6bf906af0fe025d2459f8be483d65ed4c105760671f9c92449c966d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB08B27EEC151",
|
||||
"hash": "b7bb2ad514166f3b19fc06874c577eefde0010e5ac571f9ae33ff45cd19a4785"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB08B18434DF2",
|
||||
"hash": "3efee732ed7e9a653e20d96c930e0ec799901289cce90f46bb20f627e2c0d2e9"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB08B50DAB377",
|
||||
"hash": "1f49a2f9e9c475c2587933b96572a5e5cc06a8a84560cdb60b21315868e576b7"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEB08B2B8DC570",
|
||||
"hash": "d2f1678408ccb5345bea02f8e1adc5aed38eb2fee27ee5752ccc3e3fa7e3e596"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEB08B2D556124",
|
||||
"hash": "d27f1cdb7d292f64214ecd9384fa87702f6e11c0c0f558f1b8f8d61bb6552ee2"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEB08B2BDFA7FB",
|
||||
"hash": "f65da6f59bc5091b223b82638b6333e14228cec59a3bde8e9f09f698d0dcdeb9"
|
||||
}
|
||||
},
|
||||
"0.8.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAD9DFC629D58",
|
||||
"hash": "15db93baf9410ed9dd01b89b9cc1d98cdc86bb381bc3ca77ba256f6cc6bf8852"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAD9DEFD2B9FE",
|
||||
"hash": "5f92be8cff2016e5435b876a29e15f726a803701b4fab5fc7d295b94cd954afa"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAD9E249616EC",
|
||||
"hash": "9e254799deddb5b8c99d0bb1785674891e06eb432c63deb2ae113ccd67f06e4d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAD9DFB03ACB9",
|
||||
"hash": "b3ad4cceb5a4cc2450c30f16a9fe86d0e673c311e3b807590b38b25b8a2eaf77"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAD9DF69D79EF",
|
||||
"hash": "ef9e27aa59bfbe2c3006b8ad3dc8c64aee7b704a6c9236c3bcf711ec47c6c42d"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAD9E22BC8D0D",
|
||||
"hash": "2379527cd030cb0b99841fefc0a249e19bb614681a01e46c9759afba6f0b4ff2"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEAD9DFE216AD4",
|
||||
"hash": "5db10c4fcd4452dd544f0efc546c5d52d83e7d1c079d3a458aca414a70c44d88"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEAD9DF80B4E05",
|
||||
"hash": "ed2a13d217eb9c26d1c197460826b17a94ac234d87345b73d3096ac5caa1531f"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEAD9E0CABCE5C",
|
||||
"hash": "4a4fbf602624866c511f35cdf443bf8c631efd1de31694aea592e6b69fca1b8f"
|
||||
}
|
||||
"version": "0.8.5"
|
||||
},
|
||||
"0.8.5": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -1,43 +1,12 @@
|
||||
{
|
||||
"rust_crate": "cargo-machete",
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
|
||||
"latest": {
|
||||
"version": "0.9.2"
|
||||
"version": "0.9.1"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.2"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
"version": "0.9.1"
|
||||
},
|
||||
"0.9.1": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -18,6 +18,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -29,6 +29,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -22,6 +22,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -26,116 +26,12 @@
|
||||
"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.135"
|
||||
"version": "0.9.132"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.135"
|
||||
},
|
||||
"0.9.136": {
|
||||
"previous_stable_version": "0.9.135",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB3AF11CB8A66",
|
||||
"hash": "a098eed56f2dd88c7fdca1e554a6b99fa1ffbd2a7a1c41b865700112981f6f52"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB3AF6FEB7AA4",
|
||||
"hash": "91fa94ff0b41fb31f28a7aa6ed95e5ee8bc6b034708f652e78851ff276710b10"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB3AF100180E7",
|
||||
"hash": "905fa8b5150caa012b182f6e1b9234c62aed8290883f848e7416f974faada4ce"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB3B11B80C5C3",
|
||||
"hash": "bd0213bae25c897e86a9bdc58529d5f1068ba8280540e6390d184f23d139225d"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB3AF3841BDE0",
|
||||
"hash": "2a6d9e1dd07b56b4bbe03b73778615dbff2f623e54c8dd4fa9642901e11494ee"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB3AF27BEBC61",
|
||||
"hash": "36f72249f7583909598e239dbb6d3092ac300b02d067c994e9b10c9c6e8076cf"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB3B0C6C5DEC8",
|
||||
"hash": "dfd85c450b9fa1db1c9a2ba1db15e88bf7d0857d0a9ae24622cd2e51c32088d0"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB3AF5750BF8A",
|
||||
"hash": "999eda3bc44a05ceed1b52f1e1b1bd840e71bbea76207d49cc2e88fb534efeb2"
|
||||
}
|
||||
},
|
||||
"0.9.135": {
|
||||
"previous_stable_version": "0.9.134",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1F3CDBFBD91",
|
||||
"hash": "547090eba95177d474ce7ec9d73d5d7d54363fd2bb180b7168aac1d72b2776de"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB1F365575FAB",
|
||||
"hash": "c485608adb7ed4a81abdbe432b7fe47d053fca45d645d1786f4e97aa8344cdc1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1F3416FF485",
|
||||
"hash": "63d5ff2cffabe7fc9b4ee5ab7e7569cf52203a95060eeca987bdadf844e20a6e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1F3F01F0DC7",
|
||||
"hash": "db1d77573f0d4d2fe0927e3b044196cf0c69c19aa41c57b4637d6dca47f93420"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1F33352DBFA",
|
||||
"hash": "3cbe45dcea1a11e4134a50b5d32827db942bc070c96d6eb8b97b84a88dccba62"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB1F33F808BEC",
|
||||
"hash": "1bd819f4a3d4bef2479d128b161718c1097818e42353dec656d176bd0b0f971d"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1F42AE18A55",
|
||||
"hash": "d710fd72305af5ec235e3a588af46c9781200d92139c19ded1f293630252efb2"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB1F3E113245E",
|
||||
"hash": "623e4640572a4de6a7e4009704673ca83f1f4b1ccc73ce6f3cf006c9da4273b1"
|
||||
}
|
||||
},
|
||||
"0.9.134": {
|
||||
"previous_stable_version": "0.9.133",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1E36F11ED7F",
|
||||
"hash": "3b4f60a5da132c1ccfe69377870dad227b3a05195cf8c147b1d3ce59a4f55a35"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB1E224755F1E",
|
||||
"hash": "6a7ef4ba6aaa6b11229d610bf0dcfeacf49e5394b0dafdc9d22989d0588b88f6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1E23A6E0814",
|
||||
"hash": "42e692d0f1976da9adefe28a6d9608b0d9e19f4c8043a71bef878a2e19f456ec"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1E33C04E37A",
|
||||
"hash": "3eddef2e68b4cc4c40c9146f2a0b9b93f77364c5d89024c87502fdf4f53083ea"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1E36DA48F73",
|
||||
"hash": "1de6c57858c71d0e7d455e41e5d38b4ff21c6c7fad066162cca04ea389980727"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB1E28562F471",
|
||||
"hash": "ee68356006f7671e03ea62a13ada82fb00b064a9c0979f56797e8c994949ef41"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1E3BD39E9E6",
|
||||
"hash": "511b2e114cd39695d0f49f6cc9a1117803e69599dede78254298a8fbd66362a6"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB1E1BC46DD67",
|
||||
"hash": "6d8b199bdd9dead86957970225e53a681424a10d8d14f1ec58afdfac8d1c2ce6"
|
||||
}
|
||||
"version": "0.9.132"
|
||||
},
|
||||
"0.9.133": {
|
||||
"previous_stable_version": "0.9.132",
|
||||
@@ -29,6 +29,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
@@ -17,6 +17,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -26,6 +26,7 @@
|
||||
"bin": "cargo-shear.exe"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/Boshen/cargo-shear/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.11.2"
|
||||
},
|
||||
@@ -14,28 +14,15 @@
|
||||
"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.4"
|
||||
"version": "2.1.3"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.1.4"
|
||||
"version": "2.1.3"
|
||||
},
|
||||
"2.1": {
|
||||
"version": "2.1.4"
|
||||
},
|
||||
"2.1.4": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA2B427453DC9",
|
||||
"hash": "c10fdf954e51221d63743884aaf6ee5d576464abdc4965b395e3ec26948072ee"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA2B44F072C94",
|
||||
"hash": "0c59ef2433e523e060909cdfa678969eaa81a44fdc4313cb5a1a9592e8ded2b3"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA2B420DAFA52",
|
||||
"hash": "d2091a14be8482d8771ac379ef46a9501d678cee000a5e855490009fad3a65a3"
|
||||
}
|
||||
"version": "2.1.3"
|
||||
},
|
||||
"2.1.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"rust_crate": "cargo-spellcheck",
|
||||
"template": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-unknown-linux-gnu"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-pc-windows-gnu.exe"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[LGPLv2.1](https://github.com/drahnr/cargo-spellcheck/blob/master/LICENSE-LGPL)",
|
||||
"latest": {
|
||||
"version": "0.15.1"
|
||||
},
|
||||
"0.15": {
|
||||
"version": "0.15.1"
|
||||
},
|
||||
"0.15.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DD4A85530EF13A",
|
||||
"hash": "9b36eb04e83aaea2c943064fbb2e5a04d37a46bcf51dfd99495b74b09ff56455"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD4A8564500872",
|
||||
"hash": "5d70eac68be1dae5fb69439217581f79e642867ddd4b67ba258e224de6ff82a2"
|
||||
}
|
||||
},
|
||||
"0.15.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DD49AEF852F898",
|
||||
"hash": "b96e4e73babd959aa138d1629b143180e83ebd8461064fa68e99e2e961560029"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD49AF09E6176C",
|
||||
"hash": "53e697b1016880ffe864dfba9fda68c050694644267557450881d52d9eed987d"
|
||||
}
|
||||
},
|
||||
"0.14": {
|
||||
"version": "0.14.0"
|
||||
},
|
||||
"0.14.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DC6466EF3038F3",
|
||||
"hash": "6f35073843f2eb87990ef19c841c61ded5263e3a7ff38f885cfab22193b84f13"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC646705A424A4",
|
||||
"hash": "ad97a1471b7e718902ec385c3ad045a6afbc986f736d0c4986855ec99a79c80c"
|
||||
}
|
||||
},
|
||||
"0.13": {
|
||||
"version": "0.13.2"
|
||||
},
|
||||
"0.13.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DC0E0760B5DD94",
|
||||
"hash": "f547b8f992dcc43f8a4106bae8b090ecb3fcb7ef6ce336081c22636f70e876d9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC0E07751C8D13",
|
||||
"hash": "f54fb8243497258115d1eb55b99bfc94ab3e09636c78665d3b6410885ba9190a"
|
||||
}
|
||||
},
|
||||
"0.13.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DBC987279A3734",
|
||||
"hash": "17af34dbefad5c45d23df3e4e81b0addc78782db0ed2e8e491a1532761463e1e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DBC9875250341E",
|
||||
"hash": "d18c19a3c5e7eb9ea516e691b54a4517a60517b6b1fb75b7f56a0c1dcc9b177e"
|
||||
}
|
||||
},
|
||||
"0.13.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DB98F2A6C10BCB",
|
||||
"hash": "41e99240e55f38cc6d43d7ea9f2ccd448f584eefdc262129e4238f057d995923"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DB98F240CB78CC",
|
||||
"hash": "57d45d5942d7ccd49599aae549c0bd5d906868eaeb39481088e55001d65f4784"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -17,55 +17,12 @@
|
||||
"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.4"
|
||||
"version": "0.35.2"
|
||||
},
|
||||
"0.35": {
|
||||
"version": "0.35.4"
|
||||
},
|
||||
"0.35.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA2A058109F8F",
|
||||
"hash": "bc60f0668389edd48b112c4ecc7374d3180f522cf933b7fcb3486a447f24aef8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA29FED382280",
|
||||
"hash": "a48eb40fc541a440ac0e62a22bfb7984819a1409591b4ce7e20d3d1a01625e96"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA29FE6F1DA8E",
|
||||
"hash": "6d51cfca33da65079392c55b2506705f8dcf518337a9a68f619d4de14c5aa5e6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA29FD9717357",
|
||||
"hash": "0ca28350061a6b3f4e40685472434ba56082de992022b667ec7fdb5433f186c6"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA2A01A31E15B",
|
||||
"hash": "fd4433bd3d5e930cda6571b2b2cded2d859ee8cb10bc72245201bada707999b8"
|
||||
}
|
||||
},
|
||||
"0.35.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA298DDF784C5",
|
||||
"hash": "1728506eff323e9e6908fa4de88f931f4c52a46f4bdb87a768bab819ae3a1ee0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA2985EB8F923",
|
||||
"hash": "f1373a539becba1604f12b10fafd42ec3818b30075696f6785b1c880f1d44222"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA2985F93E3F9",
|
||||
"hash": "728df0c01ed906a66df6da57d52b4427e3fe52e0684ec8d1ce6d353b48bf8a69"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA298D6C6614C",
|
||||
"hash": "34843dd46fdf13988bfdfa9021a91e942b00ddbe38277a45cbcc70eade8655b0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA29889111947",
|
||||
"hash": "6bcc479f1dd38e191dd50fb4da7d6b11de158c7bb5cbe084407aca003c34d9d5"
|
||||
}
|
||||
"version": "0.35.2"
|
||||
},
|
||||
"0.35.2": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -1,49 +1,12 @@
|
||||
{
|
||||
"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.61"
|
||||
"version": "0.1.60"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.61"
|
||||
},
|
||||
"0.1.61": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEA584E93B9FDB",
|
||||
"hash": "27031ca3902390a1d793901d17ec073ac85297ab3477b13faea984e4c97de479",
|
||||
"bin": "cargo-udeps-v0.1.61-x86_64-unknown-linux-musl/cargo-udeps"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEA584FB3914CC",
|
||||
"hash": "0840c47e3ac640db8cf1ac9136c7a133eff68f07753a8a450363b95124d0ee34",
|
||||
"bin": "cargo-udeps-v0.1.61-x86_64-apple-darwin/cargo-udeps"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEA5855ED09C2C",
|
||||
"hash": "6920b6f493f0c13a28e32522ccb7efffcc57c8849d887366b19c599dc2238cc0",
|
||||
"bin": "cargo-udeps-v0.1.61-x86_64-pc-windows-msvc/cargo-udeps.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEA584C0D0F4DF",
|
||||
"hash": "d257553c03b36d2ee7e8028d622c80b1244fc512fabb2de058c1e0ceeb92169b",
|
||||
"bin": "cargo-udeps-v0.1.61-aarch64-unknown-linux-musl/cargo-udeps"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEA5849C45DEF1",
|
||||
"hash": "0ca49f226c268ff3f7d65e82dd471900b962e4dcb3e75793558e5f4287be2011",
|
||||
"bin": "cargo-udeps-v0.1.61-aarch64-apple-darwin/cargo-udeps"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEA585933B8EBC",
|
||||
"hash": "56f71b63e24fff67cf5f34e21bf4bcd8b090d80336a629c7b829045b02494718",
|
||||
"bin": "cargo-udeps-v0.1.61-aarch64-pc-windows-msvc/cargo-udeps.exe"
|
||||
}
|
||||
"version": "0.1.60"
|
||||
},
|
||||
"0.1.60": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -11,6 +11,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -14,29 +14,9 @@
|
||||
"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.22.0"
|
||||
},
|
||||
"0.22": {
|
||||
"version": "0.22.0"
|
||||
},
|
||||
"0.22.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9F37C7CF1B98",
|
||||
"hash": "a883bdc833df614978514485d00e6174fcc3a229bf0edc07bbea8762a0405e0b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9F37FADC11D8",
|
||||
"hash": "6a0ba0734f9c8af3c98338be34ad70a3010d1014b5e551134d3e087d46192ffd"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9F38104A6015",
|
||||
"hash": "2d0e46a28b2919e92f6952dcd88c9a8f9a1e6426a6ef1319ff3a6ccaef264774"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9F37D403A82E",
|
||||
"hash": "f4ec28c33817623c2f2638c11fc7f011d7ea2468d8b56ef590daa4032ee2e256"
|
||||
}
|
||||
"version": "0.21.5"
|
||||
},
|
||||
"0.21": {
|
||||
"version": "0.21.5"
|
||||
@@ -0,0 +1,410 @@
|
||||
{
|
||||
"rust_crate": "cargo-zigbuild",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v${version}/cargo-zigbuild-v${version}.x86_64-unknown-linux-musl.tar.gz"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v${version}/cargo-zigbuild-v${version}.apple-darwin.tar.gz"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v${version}/cargo-zigbuild-v${version}.windows-x64.zip"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v${version}/cargo-zigbuild-v${version}.aarch64-unknown-linux-musl.tar.gz"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"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"
|
||||
},
|
||||
"0.21": {
|
||||
"version": "0.21.4"
|
||||
},
|
||||
"0.21.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE5DA1C7B51C23",
|
||||
"hash": "75dd8e3173f6c8b0340942ebd812eddd862fde587a75741d14f9f56fa1c27dad"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE5DA1C7BCDB96",
|
||||
"hash": "30c271be5690f8bbe46f2b4164b9e0dc3f50f72d452cd2ca25172f46934a7ef4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE5DA1C7BF70C6",
|
||||
"hash": "46854ace1052da2b650819f22fc00bccdb1e2f824ed9ebb2f4b53a6f00b5b8c5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE5DA1C7B78A62",
|
||||
"hash": "9b4b49b23ecf3dcbfee44f05dd2e0f5433c690e07d63a46c4d455120a55e12cc"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE5DA1C7B6EED5",
|
||||
"hash": "da9bf7e916f86549145dee7e8bbeb4b4d36f92ef1f4aa5f89d7d72ff610df6eb"
|
||||
}
|
||||
},
|
||||
"0.21.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE5BF87D0A51B6",
|
||||
"hash": "75357b6f733529ddd89e47f67ca63b22b4a2d6b27d118066b441c24a8a98a810"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE5BF87D18E757",
|
||||
"hash": "0094f9ccc7b325e98896da77e12388f0cb0161593e7182d0235346f1150c226e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE5BF87D080A59",
|
||||
"hash": "eab697b128ebd91e0248281c7981496e6c5801ff57c1299c77206a444018d859"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE5BF87D12D3A6",
|
||||
"hash": "d0f1ce33a3b9cf9280d417a04702e68cdd1d688475f7b13d54dd7cf86b4a2193"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE5BF87D1100FF",
|
||||
"hash": "f57a397377a27b184825d5ffc35b438ee4cda4304a5c946a6cacad6a362a9e9c"
|
||||
}
|
||||
},
|
||||
"0.21.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE5B61AE98AFF3",
|
||||
"hash": "6c9192667c38090d6b554d10bc1a9ec9c9cdd56e2db957cd9bfb441c717414ef"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE5B61AEA60E63",
|
||||
"hash": "0812e3d18495adca531692e98b461856c8c0cf6619e9bb329bbdbffc885700ff"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE5B61AE94E39E",
|
||||
"hash": "80183314db6fdf65f303b733a4906bd3fb3a4c093dcac9753b4ca0ad44a1c075"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE5B61AEA0E419",
|
||||
"hash": "d67b05434b84ee6518522ebabde47ae601c4e471c4984be95e4c208d750e9b11"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE5B61AE95CCFF",
|
||||
"hash": "5ecf6ee927a0f368771c032f992e594e3ebff9a71945c1907e2f4090b27a354f"
|
||||
}
|
||||
},
|
||||
"0.21.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE51D0BB0C5867",
|
||||
"hash": "7ec3bc93ba853c7b8297004d93d881575af64e41ee4dd213f2c91bbfbcf9aff1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE51D0BB1B8989",
|
||||
"hash": "8a29fe0c3cd7be8c880949032a6af06bb9725989a72c5856085dfdb34b4fbdab"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE51D0BB01B5F4",
|
||||
"hash": "25d881d855523405e31fa2b8a783b66d305645ac0eb0d90dc178ff210d9f0168"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE51D0BB033ADA",
|
||||
"hash": "98a91ee6fd155b70e7ece7f7b7ea1388b3b8d4b782ea5e0b8f014012579ea031"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE51D0BAFB5485",
|
||||
"hash": "3598f2ad615a5d22a0389e42dc88632228829c77d0522658d88d7ec9b147d5be"
|
||||
}
|
||||
},
|
||||
"0.21.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE51CD3148E268",
|
||||
"hash": "a381b0c5725992c460dafe1c5a048c0d656fe4c9eb632f9c7b20e8c9dae21b3d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE51CD317D99F4",
|
||||
"hash": "bbe65e2228d980cf0f50b4753580c1b158198ef1d824cada727a3ad2865dc729"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE51CD3183D43F",
|
||||
"hash": "06adb484bb845c866e028356b4cd8ac8db00096a5ac24f528a7fa6e9183a4b04"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE51CD3185CDE6",
|
||||
"hash": "e21bc69c5baed7957b8774d757ded88631c0022e6050398c37154f764c0ec4ce"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE51CD319C9798",
|
||||
"hash": "0b11175a297e68efed2dbc449996536b35ee74a0d3210796ca9136c1044b4183"
|
||||
}
|
||||
},
|
||||
"0.20": {
|
||||
"version": "0.20.1"
|
||||
},
|
||||
"0.20.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDC591D69ED443",
|
||||
"hash": "742ed281f15fef6eaf49535ac10ffe98fb57913d0c4c88d6888d794043c05618"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDC59218EDC22E",
|
||||
"hash": "d5c7ac2e6f25fb76083dff84640cdf679c5da858b9c97631555c3185be2fbf35"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDC59251305DF1",
|
||||
"hash": "b0bb728ba068ee61342f40a2124b3d8d234af8f716dd416b7c1f794dfeb4e478"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDC5923C1E9B21",
|
||||
"hash": "e9631045cc5f33ef0d6d9186196192d70b8018bf7633626c3a7c1384e81b7f67"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDC5925BF8E6C9",
|
||||
"hash": "c33134882efe6d0f83751650e4b1617411ecf62e8ba3eaf764ad5a4bbf5e083b"
|
||||
}
|
||||
},
|
||||
"0.20.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD848CAA98CB24",
|
||||
"hash": "91b3317243437a5830830fb1b50677daae6ef192a38dbe96cf2db60a6a38e0c0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD848C425C065A",
|
||||
"hash": "c3ef9c657853968fae8d1d7f35e9ebb82e74c727afbb4ce0cae45847a1b71ff1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD848CA41F7F47",
|
||||
"hash": "8a1103d46dc65c8ced3166170bef8137aecda0378574e58f7d141a9a3477a241"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD848CDCEAB516",
|
||||
"hash": "cc8d81e701587e6726d488f9a72a5048ebe7565050e933a8a0ff192ffaa986f4"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD848CB0D358D8",
|
||||
"hash": "ea121bd4c5649e38af203af8fb2dcab51a0a8b5aad98a5bd7326b2ac6384099f"
|
||||
}
|
||||
},
|
||||
"0.19": {
|
||||
"version": "0.19.8"
|
||||
},
|
||||
"0.19.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD490D612D2ABC",
|
||||
"hash": "f7fe3a25727e5b58e1b1d7fb8119a845675d441276214039cd1c2e3e49376180"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD490D767A3640",
|
||||
"hash": "9a807773528537ffd60d3b09a657a0a63b237a6cefb31155584646bf01aae302"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD490D84454E90",
|
||||
"hash": "8a35efb6041d35fea144e05e730531acfd232b1193dd2272804aeb1205452ed6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD490D610F8ADB",
|
||||
"hash": "ca193cab2f29cb1380992fe51ed7e13ea759be519a4afdd045f70f01508f1853"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD490DBC8F876E",
|
||||
"hash": "2f60fdbe8e2c7b8bd0562225a97a6c66f87f8966f532bc24bd86309961b5728b"
|
||||
}
|
||||
},
|
||||
"0.19.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD1DD6FF709E0F",
|
||||
"hash": "f0888b50dfaa353885a6eeb1979f3ad42a153b34e388d4e6c944dbed5940d1c5"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD1DD91C5DB4A4",
|
||||
"hash": "d57225a8e3574c0cf4bb1e7ade0acdfd8ea37a70803c8f17b1087c69246c0b5d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD1DD6E31A46A4",
|
||||
"hash": "aa2de5926d125e0248dd7181d894d3a0d5873349da5ddacc32ed5380de49d07c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD1DD6D01D2225",
|
||||
"hash": "64c0c8c8387f3ac3c5f610cd2f973eca50ca351c03bb4c386fdc981f09aa97a6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD1DD715E23D42",
|
||||
"hash": "2997e25a9d591f2c1de275c19fa0e50bf536a6129f83147530a2df4b816d39e1"
|
||||
}
|
||||
},
|
||||
"0.19.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD1D6C197AF968",
|
||||
"hash": "4e96fa4c6949f769b1d9765534eeeecc1cff1c68a2f14c2133ce725aaf2ab25b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD1D6D66BE92B9",
|
||||
"hash": "1a6ca0ba81d2ebfef6ca3b77c37924c87e994ba20acbf479f285b55d82c2bc60"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD1D6C1F3C234E",
|
||||
"hash": "96c62f249de011c1171bfec8e8f0167a8ea6fd2acc235ee0b159864be1f00fc0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD1D6BF3997E3D",
|
||||
"hash": "7f1e6ae0163a604d18d39eeebd1ddf0ff1227a94831c516210c7d0b77efd5c0c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD1D6C3E89704C",
|
||||
"hash": "8217239a1bbd6ee937da66e87d2aaacbb5afd10d275d72f5e54a481f67245332"
|
||||
}
|
||||
},
|
||||
"0.19.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD10EB499E98B9",
|
||||
"hash": "3d4baf2a9067e13577a31623f9fa628c6415caea188591dca48aa378783e3913"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD10EC07B2E36C",
|
||||
"hash": "ecc421030d2db57d4e4bd2a29904243c9f59920e2634a0d2e9480ea4dedb00e5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD10EAE6228CF5",
|
||||
"hash": "589254e208526d901d2193f4470a14241ad636a35df60bfeb35058e93e2e0d1c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD10EA7C976517",
|
||||
"hash": "0715fcfb3881a51e2e663f176c4ba6ba8c3f9a7a346668cc5b957d237ad4d401"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD10EAF12FE9A3",
|
||||
"hash": "abd4b87c1b22ed02df55b166fc86ab5269a16c3186f99786c4663fb64dfeea7e"
|
||||
}
|
||||
},
|
||||
"0.19.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DCF74715BF6C29",
|
||||
"hash": "3fbf6d78dc23d413c3c1196cc790598e6162baaf523f3ceebf565d6ed1738545"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DCF7471D5CB591",
|
||||
"hash": "51b376a3b1a41dc09eeb197c4d25e6fd23e6a440e2a58956a52ecf88c8177679"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DCF7472F0600BC",
|
||||
"hash": "bfc9c836fce7d0f0ca829b63a53f646b6f0ba35e6e0518ebbc18bcb5dee83020"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DCF74713191958",
|
||||
"hash": "2f84b923075b0fb62a5069b485c80005888e4ffba7ecf984f327b2d2fc8f3c6f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DCF747939158DE",
|
||||
"hash": "39d64a306be35497d66325983974db9d16d1dda3de8fd30ba7bf4799ff280fc8"
|
||||
}
|
||||
},
|
||||
"0.19.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DCDCA2DC25EFC6",
|
||||
"hash": "49d4796319f0b85039783675499d092cfbb95f33f9cc9e6feef239f7f23efe5c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DCDCA0D37AABD0",
|
||||
"hash": "60348c23e14e212b11bb68eec3cf3b5db2d18461f02efb0066ee6b1ec87790de"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DCDC9F69902822",
|
||||
"hash": "ba09c9f260500ffcf6837f57b06f1fc826695bdc28f69b0258067345b25661e1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DCDCA2DC4E31F3",
|
||||
"hash": "b3bd9e02e1fa8ef4cd0c96a9686f2a9ed8ddf17c175c4de71f8709ca11e83c4a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DCDC9F9CE2DE4D",
|
||||
"hash": "c624ac2b937991dd9d08e3d4b4c248ad3ea6ab6ea8e302754ad52b77856193e4"
|
||||
}
|
||||
},
|
||||
"0.19.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DCD7F42717DB9B",
|
||||
"hash": "004df391aa3bedcda64ce887a1e28f4c560a5afa417985f2e6a43dd57d1f7704"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DCD7F991A9561E",
|
||||
"hash": "8dc56fc231d55522dcb88fa96b35db352711a7a86a9abaed76013c712ae58515"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DCD7F3EC049C4B",
|
||||
"hash": "2ef56bf18329eafd2a8948b695c19178fe4f2fe7f8bef295f570f1492c916988"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DCD7F3F7DE776A",
|
||||
"hash": "7b323b138a49a684a811bb774f7a868131318bb5e0bd5bad20d44e7f6bf016a2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DCD7F4493614C5",
|
||||
"hash": "9da4d347bb1b26a10de5c9025561703c12ae78dc222205a2901a7ece739231fd"
|
||||
}
|
||||
},
|
||||
"0.19.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DCA02F57E9832F",
|
||||
"hash": "d90450f3b6cc40294263f09c1b8c04231e6b526f811f506812501de814737888"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DCA030EA6943FA",
|
||||
"hash": "e11ca1c260632e10e439f28e8d87453a61fb6b8cd938d24523c4132f85fe3d37"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DCA02FA6F628E7",
|
||||
"hash": "2e3f5f44d6619e0aab9ad80e9a46d98489f913af90a966386532bb359136ac51"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DCA02F301C95E4",
|
||||
"hash": "149035fc30323cb683aea8f8800983007da27f3de22a1beb12d05e9fefc8ef06"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DCA02FEBAFBE0D",
|
||||
"hash": "26955ffa45d67751682ece010c640601127f7a4e00711eb251e59c8864a46569"
|
||||
}
|
||||
},
|
||||
"0.19.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC9119E4DF0AC7",
|
||||
"hash": "ab2e2f3a22409470ec7d71badc22ab89351a6ddaba5c4785a39689856809404c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC911B3D433D97",
|
||||
"hash": "9173594204eaacadd62e2f26a3c2365887ec24a4fa15f309023b8d4bbbc09dec"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC911A1AA0FEBC",
|
||||
"hash": "640b03357f568deb976cd0e0732db04f723498a0d4706d71ebaec05f8fc35db2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC9119C072F83B",
|
||||
"hash": "edc3d0966ed8c80056d36ace8998eb75ed2f3a71342e0825960d98c9eb3398a0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC911A3FFF6228",
|
||||
"hash": "6affe535f6d37768cc20be30b8b65a1bcc196ae1efdad71d2a5c44049a081b7e"
|
||||
}
|
||||
},
|
||||
"0.18": {
|
||||
"version": "0.18.4"
|
||||
},
|
||||
"0.18.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC64512B96B7E2",
|
||||
"hash": "bfcef631fe5ec5c0381d0028d47765dd4cef54ece10ebf2d76e62de6e7941d4e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC645162138D32",
|
||||
"hash": "b04e989f6df22d46be292af8c4f799467d6e60305fe6ab55f9bdf1c795a0c70f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC645155E600B1",
|
||||
"hash": "5a5ea2b4d2dcd6d9196d5ca72e76c0d0714dae1ad287d313b89b1d78bcdc8364"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC64512690B73D",
|
||||
"hash": "8271acf32a08fc6073153fffeca5d9289dce7ae13a3a9d64cacf0600904fa7f5"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC64516B51DB3B",
|
||||
"hash": "f5166b64a037508c4698e03bde3a57a53fde530fe604866050e1fef43cd5df6d"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"rust_crate": "coreutils",
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/uutils/coreutils/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.6.0"
|
||||
},
|
||||
@@ -26,6 +26,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -18,29 +18,9 @@
|
||||
"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.2.0"
|
||||
},
|
||||
"0.2": {
|
||||
"version": "0.2.0"
|
||||
},
|
||||
"0.2.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB08EEA0C6D64",
|
||||
"hash": "2b3e8aae7e26f584db9dec00cc70d27876dad929f3230fcd0a85f39e4a1f0e36"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB08EEA0D2FD4",
|
||||
"hash": "29d2049edbdb78e67895ab8bc13d8400dec4bd7d9de075e73f7c62466ce5a6e9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB08EEA0FC504",
|
||||
"hash": "6f13614a312f70090d071bd2ce8d4cebd665be97bc7a6d93589f25c14e2e22ef"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB08EEA0A4CE2",
|
||||
"hash": "23b784619d5bb8040916d0a625e563d9ca244c05f3b20e813b6ab6f79a0487b7"
|
||||
}
|
||||
"version": "0.1.4"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.4"
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
@@ -20,66 +20,9 @@
|
||||
"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.32.0"
|
||||
},
|
||||
"0.32": {
|
||||
"version": "0.32.0"
|
||||
},
|
||||
"0.32.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1C0D0F942CE",
|
||||
"hash": "454879e6a4a405c8a13bff49b8982adcb0596f3019b26b0811c66e4d7f0783e1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1C0E6600350",
|
||||
"hash": "a13a5de12d10cfccf8f222614b99af243fee5491b0ec73850b1d6fa050d4ad4a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1C0DDE8B2F2",
|
||||
"hash": "b1c00dbb40e628ec8c1252771871341ac4d4aaf032f832d83bd22cb2b1d258ae"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1C0D8F3B26A",
|
||||
"hash": "abf0b7c5648a5b127791d691cad41f004aceea27c75bb42c9572fdc9694770cf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB1C106F3BE09",
|
||||
"hash": "83be8a9599f1dce1252208bd4d0bb15308eca0546814fb72b48b7246d35e832e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1C0E3DAA66B",
|
||||
"hash": "88a8f99667909da3b69b74ab0368082305d52595d1dfc694114e29b4d9139d20"
|
||||
}
|
||||
},
|
||||
"0.31": {
|
||||
"version": "0.31.0"
|
||||
},
|
||||
"0.31.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA5BE1A225492",
|
||||
"hash": "72c465982796cb930dd7bfabe68d869aea053c9b7a717dff9ceee56b5624eea4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA5BE2A8378AE",
|
||||
"hash": "78c3f395499fc80d1b0a0c2ad0497fa212ccb90a544524599be6356707b49bbd"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA5BE2463CF5D",
|
||||
"hash": "da18bdb0d5b10a5f45ddfb59b7b08b11ddc050bb5c6407608d831929a1799d3f"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEA5BE20738480",
|
||||
"hash": "ecdb5a10bba199417ccf94b57f27f0ec201b91eb4fadc6d7998696e082e69bef"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA5BE4A7F7F7B",
|
||||
"hash": "42d5b880968eed5b8939d48adf125c5d96944231259e19167c29e9da9e9d2afe"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA5BE28D7835D",
|
||||
"hash": "af0a5c6c17b0bee113066760d3378eb5e03eb5c75eca2479e61fc43669c46036"
|
||||
}
|
||||
"version": "0.30.0"
|
||||
},
|
||||
"0.30": {
|
||||
"version": "0.30.0"
|
||||
@@ -17,6 +17,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -26,6 +26,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -17,6 +17,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/editorconfig-checker/editorconfig-checker/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.6.1"
|
||||
},
|
||||
@@ -17,55 +17,9 @@
|
||||
"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.17.1"
|
||||
},
|
||||
"0.17": {
|
||||
"version": "0.17.1"
|
||||
},
|
||||
"0.17.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DE9C74A098CB39",
|
||||
"hash": "dd8625b3742b2f74ce406286baef8ee67525d63b25ea303ddf7473ed2cc31192"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9C747D3044B2",
|
||||
"hash": "c51cf3d7a91c5e24de680812cf110fa58a4315ed80b8d1af8e74f89088d8b861"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9C748FE2165B",
|
||||
"hash": "f3a2d372e6f04f67a2adb7ff310ad336d9d475a5c4ce2c0c7855792875981bf0"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DE9C7475A3FBDB",
|
||||
"hash": "9b0082414a962edfdd62aeebba07e8eaf3009477e78903a6bc656775f2f1dbe7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9C74AB2E27B6",
|
||||
"hash": "93bff02d2e3f37eb5c0ab68b2016fcbeb5e9aa0334f8f47e5ec63a219daace91"
|
||||
}
|
||||
},
|
||||
"0.17.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DE9C60D8405E5A",
|
||||
"hash": "9b97234338a83c23e6324595ae861b190cc95fefeb257575f05327fe1f2cd77d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9C60B152442B",
|
||||
"hash": "366e7f1ba3aaf60d026a232d83cf75e0d9a977083ffba5a4ef90bb0732df4d11"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9C60C2BCF730",
|
||||
"hash": "03049e76c11f174b3f32277545be53819a243af8e8c012e7c07e10314840e170"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DE9C60A9AE250C",
|
||||
"hash": "f6356701429f99b2bb6dc1d67aadb56bf3c3b09b6e583849d334068d5edda418"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9C60B3F2D0E4",
|
||||
"hash": "7f7c5f38d15bbce54a910150ba295516985e3bf27abbacf81d8718bf7cf7521d"
|
||||
}
|
||||
"version": "0.16.0"
|
||||
},
|
||||
"0.16": {
|
||||
"version": "0.16.0"
|
||||
@@ -26,66 +26,12 @@
|
||||
"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.13.1"
|
||||
"version": "2.12.0"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.13.1"
|
||||
},
|
||||
"2.13": {
|
||||
"version": "2.13.1"
|
||||
},
|
||||
"2.13.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA37D7F9F3C29",
|
||||
"hash": "200d2535da6d9703f3bcc8a4d159c3b55eacdb01cf2148c55b3eee9dd04d5249"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA37D44E87B3A",
|
||||
"hash": "6e60ae390d375cecb9d8008c49f0e724a8dfe40390b532ef5501e421d2cc8acb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA37E02E19030",
|
||||
"hash": "3ae3a5549e85c7ad5b20192ebcfee4371269deca51255f6f2f2e051c6541f5ca"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA37D82440AED",
|
||||
"hash": "4054c124b926c117f3fa048939bc8be0a954f29f3b6f367627e8cb22c1971882"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA37D25D82E17",
|
||||
"hash": "21547ae4a0421164070ab75c2522864ea5565858a011fabc5f583061b20f1226"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA37E17A6094D",
|
||||
"hash": "03a623191fe575bc0024e2ebc61cc861cebd3ba84b93ff13b002c42e8248cd3f"
|
||||
}
|
||||
},
|
||||
"2.13.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA3772B3C02DF",
|
||||
"hash": "132539f836416563e86621ff0649f0c0c766cf32ea1be85f3ba0d34f043ce86a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA3771FC5A88A",
|
||||
"hash": "ad980b6bd5c52deec7c24a55599f652607d40d221f0bfb75142017a9fc82f7c4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA377B78B9783",
|
||||
"hash": "17f891a0ec38f8c9ef6440eed31be43117491b05afeba6093a15545633eae6ff"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA37725E52DB8",
|
||||
"hash": "27b9216d92a254fb03d18008252a7c8c7bc803b4616bf69175ff448918a9606a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA376FF31CE86",
|
||||
"hash": "72e8d1f4d1dca4312ccf979c72a094e5bab0a659ec6c8d4e1bbea19f9cc65b23"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA377B597C5A5",
|
||||
"hash": "ae2cdf8b70999c8dd52af50283b0c9a8d811055e1f8879ffd1a7d90c678e902b"
|
||||
}
|
||||
"version": "2.12.0"
|
||||
},
|
||||
"2.12": {
|
||||
"version": "2.12.0"
|
||||
@@ -17,6 +17,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -22,58 +22,12 @@
|
||||
"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.19.0"
|
||||
},
|
||||
"0.19": {
|
||||
"version": "0.19.0"
|
||||
},
|
||||
"0.19.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB2939FC5A8D0",
|
||||
"hash": "3048fd4f7642385564c5a9dafe8ed483f3bcf07bd8d853c41795ebb64821bfe2"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB29373596C89",
|
||||
"hash": "69a52c4165d27c74acbe9ab06ce8bf838d74bc1759246612fdb6e096309298fe"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEB2936A9F24F3",
|
||||
"hash": "27a69e4a1daf5e644914d3ca1a3fd93bdda5f47536f61c6b7b11d933c4e2386e"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB2936EA942A0",
|
||||
"hash": "807cd7dd58ae90e02096c4f955008c7ab84366300ddd23690af671b428bfd859"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEB293B0817BFE",
|
||||
"hash": "6ae6eb74c8daf0542fd172367463f6ea620738bec3ade22518807a5dc0cf16a9"
|
||||
}
|
||||
"version": "0.18.1"
|
||||
},
|
||||
"0.18": {
|
||||
"version": "0.18.2"
|
||||
},
|
||||
"0.18.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA695B3CFC4FA",
|
||||
"hash": "bad19b8dd280e9cfab691eb3220d107ce1b09091846ac7df19c9a303988cf071"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEA695BAEDE5DA",
|
||||
"hash": "46ee655aaac3f1d18c823ec8abf4c8adb5dd9641c526b49de007c15b743c8fe4"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEA69515EAE4D4",
|
||||
"hash": "07b17bc9904c2733cfd7663ac36ed28a80af28530403c77f0a34887b76e64f4c"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEA6957D2B96BF",
|
||||
"hash": "496df4183e0f29ac919e14688f85fa4464d2e632fa6730743bdf24acf66108ac"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEA695C06514A8",
|
||||
"hash": "6b6ec6b64d03d73b465222062fb20ead1eb6b18a48ab791fb5fcefed34fd1532"
|
||||
}
|
||||
"version": "0.18.1"
|
||||
},
|
||||
"0.18.1": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -22,6 +22,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -22,6 +22,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -17,6 +17,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -20,69 +20,12 @@
|
||||
"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.51.0"
|
||||
"version": "1.49.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.51.0"
|
||||
},
|
||||
"1.51": {
|
||||
"version": "1.51.0"
|
||||
},
|
||||
"1.51.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAE57CA880015",
|
||||
"hash": "c8f085ca3e885723c341d06243fc291b5abfdc8bbe3b2c076b117de490387b59"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAE57CE96D452",
|
||||
"hash": "d583e45f1f9fcdd26069ad2fe3bb9dea414756d8d0752eb9093974cb5c0246f0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAE5807F7D123",
|
||||
"hash": "09d1138b6845e73f04bff5e26be3f57663bddca25e36fe6241d28a5aa310b64e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAE57D7B4C6C3",
|
||||
"hash": "ed7ec466b77709198fd4afed253dba0270203ba5eb1c006bee2b0139090284f5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAE57C4207AAF",
|
||||
"hash": "61e3f1b8a545ff064b091eab4b6e14f8cc743ff15549be293b1e92f5b1467002"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAE58150634C5",
|
||||
"hash": "12bf56b5b3463e20a1dbb61e3d14748efaefb49231223ef465fbec4d442e2d20"
|
||||
}
|
||||
},
|
||||
"1.50": {
|
||||
"version": "1.50.0"
|
||||
},
|
||||
"1.50.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9E6F41A84659",
|
||||
"hash": "27e011cd6328fadd632e59233d2cf5f18460b8a8c4269acd324c1a8669f34db0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9E6F39943078",
|
||||
"hash": "e4fa28fe63381ca32fad101e86d4a1da7cd2d34d1b080985a37ec9dc951922fe"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9E6F71190D2B",
|
||||
"hash": "5dc713f049e174e22de41fd06292a26c9b90f2d37c1be9390d2082fe6928b376"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9E6F47F2EDF4",
|
||||
"hash": "3beb4967ce05883cf09ac12d6d128166eb4c6d0b03eff74b61018a6880655d7d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9E6F49FBDCE5",
|
||||
"hash": "891262207663bff1aa422dbe799a76deae4064eaa445f14eb28aef7a388222cd"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9E6F73FB889D",
|
||||
"hash": "91065b94d11beb4b05c8117d8a736e978f41764d73131de35d8134c9ab9dee7a"
|
||||
}
|
||||
"version": "1.49.0"
|
||||
},
|
||||
"1.49": {
|
||||
"version": "1.49.0"
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"rust_crate": "knope",
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/knope-dev/knope/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.22.4"
|
||||
},
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-apple-runner",
|
||||
"template": {
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/madsmtm/cargo-apple-runner/releases/download/v${version}/cargo-apple-runner-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "cargo-apple-runner"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/madsmtm/cargo-apple-runner/releases/download/v${version}/cargo-apple-runner-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "cargo-apple-runner"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.0.1"
|
||||
},
|
||||
"0.0.1": {
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9E56906B2739",
|
||||
"hash": "66e53e60e1502d6c6e57aed9c423ecbe9f155fbcee56824a20eb72c49136a554"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9E56816E1F2D",
|
||||
"hash": "58b94a77328568eff1c8d1216f51933c0753d20365b2284cf3a1dca843a6d0c1"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,478 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-mutants",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "27.0.0"
|
||||
},
|
||||
"27": {
|
||||
"version": "27.0.0"
|
||||
},
|
||||
"27.0": {
|
||||
"version": "27.0.0"
|
||||
},
|
||||
"27.0.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v27.0.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DE7C6140E66D12",
|
||||
"hash": "5083ce59bf9195ce9bb218278b609bbd183be897ca53671bad4df588fc7a9d7d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v27.0.0/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE7C6140AF6E5E",
|
||||
"hash": "ea6f74aafe435a5d43c0ccd52a732da1741918c5d0a27dd52858020691e122b1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v27.0.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE7C617CE88B48",
|
||||
"hash": "d79500d2cf8fd2833977061ccc3d64d3e4ddce0f09c32414c81bbdcfce197322"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"version": "26.2.0"
|
||||
},
|
||||
"26.2": {
|
||||
"version": "26.2.0"
|
||||
},
|
||||
"26.2.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v26.2.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DE6158D2F53622",
|
||||
"hash": "5d6358fb9c56584ce685efa4f4977653cdc99a3896f75f0e11e6ead5f5ecf190"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v26.2.0/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE6158ECC8089E",
|
||||
"hash": "9ecffb0ec1b6f2e73f4d087194960dcb98f74952ccdc9bcf6ed1f45f1ea647f6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v26.2.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE61591075589A",
|
||||
"hash": "49681ca8fb2d4185a2231c67f2b7d7fec9cbc67e5ea3c682cfb3b0a980d4dee0"
|
||||
}
|
||||
},
|
||||
"26.0": {
|
||||
"version": "26.0.0"
|
||||
},
|
||||
"26.0.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v26.0.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DE360B8D9A891D",
|
||||
"hash": "749ad72f69555d7b7585ad0798413d7e7697ad3bb3102a0f4c878fe837a05392"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v26.0.0/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE360BAA4624BA",
|
||||
"hash": "c612ce8c042014a7e4b8fe405f2d85134d17ee16b1a83f467c3c6d6d61096d67"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v26.0.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE360BDF111593",
|
||||
"hash": "ca159cf27096aa35e6091f098ec158fe15ca981d02996a01287cc8a4a81fad82"
|
||||
}
|
||||
},
|
||||
"25": {
|
||||
"version": "25.3.1"
|
||||
},
|
||||
"25.3": {
|
||||
"version": "25.3.1"
|
||||
},
|
||||
"25.3.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.3.1/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DDD82B57A6C769",
|
||||
"hash": "be41e6f74b633452fb17ef3b6b6113e180130f7b5693863b400c58b39e476726"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.3.1/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DDD82B4C4F1BEA",
|
||||
"hash": "091f451bd8f980911870b230e1721dfff2dfea05ac922e65db8b45e1059cb480"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.3.1/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DDD82BB406AD5C",
|
||||
"hash": "3a1db3ec7a4cb0c809862b85dfddf3eb7bda7ffd584e7a2ea194a8b710da7e0e"
|
||||
}
|
||||
},
|
||||
"25.3.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.3.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DDD824CD324921",
|
||||
"hash": "96d06266a378cda0bbda30ac6253e8ac29f776c5fcde1c8d193d7f249489e0a4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.3.0/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DDD824C56C1E69",
|
||||
"hash": "d83e76014732a3bdb31d33de0288253bc04a2db6e73825305a585c1efe1bc346"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.3.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DDD8253326A997",
|
||||
"hash": "9aeed779f58a5a75a6c7be8da7f60b97c7ae9b42f15249b21bebcbad0a3e44c3"
|
||||
}
|
||||
},
|
||||
"25.2": {
|
||||
"version": "25.2.2"
|
||||
},
|
||||
"25.2.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.2/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DDC66C7E4EA202",
|
||||
"hash": "41d809e73dbaad977f92a075c6e87187dee655e7e78dc6f82b5fb365ead2c686"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.2/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DDC66CBD4DCE11",
|
||||
"hash": "4241ab06b254b93352b1cfb20dd4d1d1408e18b660e538182b66254e9f88d21b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.2/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DDC66CDC075C6E",
|
||||
"hash": "0113af7e93812c3fb526e6b2c57104feabaa07fe8b3042227b9eaad631bcd1a9"
|
||||
}
|
||||
},
|
||||
"25.2.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.1/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DDBFC31EF024CE",
|
||||
"hash": "8051e53067c23de63f71537672930e8a43bd2c54ce2bce5187286a675fbc82a1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.1/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DDBFC2E4BAAECD",
|
||||
"hash": "47604df3027073d2c5e7cff5d29a7bedc67c0bf34089850a63b11f520eab224d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.1/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DDBFC33B6D2E31",
|
||||
"hash": "66455f2cc848ee977d8f28bd4b3c0136b7c5ca8be6a2664a19bddac4c7dfaadc"
|
||||
}
|
||||
},
|
||||
"25.2.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DDB7EB6F783A79",
|
||||
"hash": "e0a5ba049a3dff711b670797e8f0cbfff6a5a800636e5f74d6b298f19b6c8604"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.0/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DDB7EB67593339",
|
||||
"hash": "92178380a2bf1346edf6cb5b9d9f7833ef5b7f382fc9551b2e0d031731ac6347"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.2.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DDB7EBAE35B0C4",
|
||||
"hash": "58670f38147b428b00d8f1b531055addb9b3bc7fc25590630ac13b56769db517"
|
||||
}
|
||||
},
|
||||
"25.1": {
|
||||
"version": "25.1.0"
|
||||
},
|
||||
"25.1.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.1.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DDA43F4AA5BB6F",
|
||||
"hash": "1d4f0ff88c70713c9125c4fe95e90d0d9b5841b3107b18612f86352ee0d5dfbf"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.1.0/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DDA43F63C4351A",
|
||||
"hash": "90aec4ec10bb3c8578c279f48dc4477d52d9dc030c951f26c185d59a382161ad"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.1.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DDA43FC4906614",
|
||||
"hash": "f318f8f557c64cecf61274cdf2adcb8e1d03a005c556115984fd4111e7d93442"
|
||||
}
|
||||
},
|
||||
"25.0": {
|
||||
"version": "25.0.1"
|
||||
},
|
||||
"25.0.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.0.1/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DD491A2EB59B91",
|
||||
"hash": "c2bbcc2f1538b7190d861dd4180bb5ff762c2653f0083784dfed1a379f96805f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.0.1/cargo-mutants-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DD491A30293539",
|
||||
"hash": "fbc94437f2439e7f712e3f3ab95aab69611c10cc446edd4a1d94e5e8c6063027"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v25.0.1/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DD491A8AB18266",
|
||||
"hash": "3571f31092e987b2b24c91d4078d5ee5a170f0f434557212c4defda3d741d6a7"
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"version": "24.11.1"
|
||||
},
|
||||
"24.11": {
|
||||
"version": "24.11.1"
|
||||
},
|
||||
"24.11.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.11.1/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DD0B62D6E7C782",
|
||||
"hash": "2d425915f13e6ecf6f76e702c07a4612d5b5eb59e0902e1f0342f265bce306d7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.11.1/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DD0B62D7F852F8",
|
||||
"hash": "9001fe945e4004a86e8104f564588fbd83c562e4a9a734d5fccc1d026136c523"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.11.1/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DD0B62D792D762",
|
||||
"hash": "6ced7ec7c9b7558b3b0ecb7d61c62c2db3e91b35d8ce16214b48ef23b10c8fe0"
|
||||
}
|
||||
},
|
||||
"24.11.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.11.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DD0270AE8E880F",
|
||||
"hash": "aaad95b83afafac1886c1ff11b123144ac5899f7c24fa2c4cf7698cd0da2a053"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.11.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DD0270AF7793AF",
|
||||
"hash": "3401d59c3a6dbe3c9953f9ecb0cff5fe79038803aa26af6a6a55ac58ced280c8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.11.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DD0270AF10BA18",
|
||||
"hash": "5344a4edfdd7b1dd01960cfe5f013a2378f9fe8d61636e7a829cb218859ca776"
|
||||
}
|
||||
},
|
||||
"24.9": {
|
||||
"version": "24.9.0"
|
||||
},
|
||||
"24.9.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.9.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DCE15A48CE5EA8",
|
||||
"hash": "61236c4caa79d8971f50446c9254bc219018b167f73fd265ea4dc90f892efbf5"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.9.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DCE15A4A132CAE",
|
||||
"hash": "96bbeb6f879b5dd6f9c3e8e8e9c368ab5ae7641c0a7b50bf43a96020f96dac1c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.9.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DCE15A498E17B8",
|
||||
"hash": "c18967950c78d8fc6186266dcad001d2a90e2e59b66047bd3539b5dfbddcf03d"
|
||||
}
|
||||
},
|
||||
"24.7": {
|
||||
"version": "24.7.1"
|
||||
},
|
||||
"24.7.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.7.1/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DCACB7A0F2851E",
|
||||
"hash": "947d551c7e13723b70a9954b1a0dcaca46a19c1308e5a605ea09df2cceb3b3f1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.7.1/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DCACB7A25ED29A",
|
||||
"hash": "9438cbc12d6155eb15698099280cf9df793d1b1ff12a158744807696c81339a6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.7.1/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DCACB7A1981CB6",
|
||||
"hash": "b25fc0e7132d2a619da425ac364d535f5e8153e3b9c459cdef9e2710b36b5ebe"
|
||||
}
|
||||
},
|
||||
"24.7.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.7.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC9CFC44AD726D",
|
||||
"hash": "9452f685e16b911f95456d9b923c48816c1d515142962be7037b9049c8297711"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.7.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC9CFC45CFC3FB",
|
||||
"hash": "7619ad6983214c4ecc163c0fdff8431e7da3f62b5cd65608119d228c868f6241"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.7.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC9CFC4546204E",
|
||||
"hash": "46a80430675334b7e95227ff6548229f70bbb71eabc19a9f271352ea8adef732"
|
||||
}
|
||||
},
|
||||
"24.5": {
|
||||
"version": "24.5.0"
|
||||
},
|
||||
"24.5.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.5.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC744EABC331AD",
|
||||
"hash": "c6a43a41fa1a035d06c13f8f6aa5a2d01ff668c6ed464ddc52c44a0d17a562ab"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.5.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC744EAD33E74D",
|
||||
"hash": "69069ed5ab31884a6c28bffdb6b22d0981eaab72c79ce90690dce7abad91fd23"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.5.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC744EAC8F120A",
|
||||
"hash": "ee9d8c82b2421fb1cddb11f84720d204d47f50763763d7bd129969d3f1671245"
|
||||
}
|
||||
},
|
||||
"24.4": {
|
||||
"version": "24.4.0"
|
||||
},
|
||||
"24.4.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.4.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC626DF8BE8265",
|
||||
"hash": "c1113af33c82571e53b5ef0073bd433f0b06b4363da184865b3276fa19389b4f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.4.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC626E04DB7CED",
|
||||
"hash": "9521ae55128104d5c514e1abc297e91e1b3bfc7b54e79b52e8815c9ed5852ae5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.4.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC626DF9941BAF",
|
||||
"hash": "1a12dc7d21f1c7cc656f0295c07698b0e29589791a361ddf7d9f1627a0c1d7aa"
|
||||
}
|
||||
},
|
||||
"24.3": {
|
||||
"version": "24.3.0"
|
||||
},
|
||||
"24.3.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.3.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC4C2624753B38",
|
||||
"hash": "81371a28c9a96675ac1d29fb85a8ce4141510450644ba72e58f1c18a50bcf3b8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.3.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC4C2626F73F72",
|
||||
"hash": "d0d3d3866765d2a3675995ac7683234796af67cd5f1b4510d9c974e6be255dd9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.3.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC4C26252D0E28",
|
||||
"hash": "27ee3a942056e3ad1c466e49da0ee028dbd8bfc3bd81c5ac4ff6a71e76c48e34"
|
||||
}
|
||||
},
|
||||
"24.2": {
|
||||
"version": "24.2.1"
|
||||
},
|
||||
"24.2.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.2.1/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC3642444159AD",
|
||||
"hash": "781b65f9828b9eeeb2eb87222b30a1923e83bf130f9715ee3c423db254fab759"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.2.1/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC3642453EE79A",
|
||||
"hash": "bca0d57fd1781109cd11e643f0e7d2b645e455ea3ec09347c5e60ecac9570128"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.2.1/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC364244E5935B",
|
||||
"hash": "7de241443f01d72a1c45b985b5d1fd187d6ad6c6f3ec6d1ac5560eb8cf8471f7"
|
||||
}
|
||||
},
|
||||
"24.2.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.2.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC25C8E4D499D5",
|
||||
"hash": "43a4f6dce91c7c40e3d60e992b682c52ec1bc99c4ba04cca40176203be7391ea"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.2.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC6E57B3629D95",
|
||||
"hash": "f2690a68976209ab4f4aaa4dd88fc2f835f3dbbd04938bba74a60a2b06f858d9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.2.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC25C8E56DE34E",
|
||||
"hash": "c86d54585747e28ce9f8e0fb6c309c03c831bc7ffc47ede819fd7a9e0a2e46e5"
|
||||
}
|
||||
},
|
||||
"24.1": {
|
||||
"version": "24.1.2"
|
||||
},
|
||||
"24.1.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.2/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC1CFD31F8E32E",
|
||||
"hash": "7148c146f30834d7dda837d85cb0204bb454ddcc334c6bff65945c7656539022"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.2/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC1CFD340CC25E",
|
||||
"hash": "e4451a933e33d743d53a23037738a15ca67d7af636ba2fb3ba4359aefb094b98"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.2/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC1CFD32973022",
|
||||
"hash": "39ecec1fd4fa07bdffa2a5df8dc30d128b2fa206898f33e1c69ff2b017925d87"
|
||||
}
|
||||
},
|
||||
"24.1.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.1/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC16B49E5363AF",
|
||||
"hash": "f3ec93c5e85599e114eb2d732e550df20ecf145020bcd1270e2bb5dc8a0b25c0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.1/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC16B4A58800FF",
|
||||
"hash": "7e0b8542089af53a6eed905a50f1d57ecd3f4914af0bb0433129c9087a5af836"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.1/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC16B4A031A245",
|
||||
"hash": "18daa54e718d47c5d94e94718760b7e0b54da7d220507ac44f52817eabf9865d"
|
||||
}
|
||||
},
|
||||
"24.1.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC13E7777223F9",
|
||||
"hash": "03e80419baf9b4244f304b19b1baac57e08425675650c854c01a937945a1f8d4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.0/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC13E7798567D7",
|
||||
"hash": "c01cd159db0be3c80cac1bdbdbe755cd492a3d4e90065c9235d550c48c040587"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v24.1.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC13E778F699C1",
|
||||
"hash": "a21ad70d36d7591d78ada6470c2394115f7d009b1572460fd51476ec334b8304"
|
||||
}
|
||||
},
|
||||
"23": {
|
||||
"version": "23.12.2"
|
||||
},
|
||||
"23.12": {
|
||||
"version": "23.12.2"
|
||||
},
|
||||
"23.12.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v23.12.2/cargo-mutants-x86_64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DC0393B7E2DE8E",
|
||||
"hash": "3208e14a514b4b61c1acaa5b37717c7a7ea50775bad186c119e1364c8dc6256b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v23.12.2/cargo-mutants-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DC0393B96202A4",
|
||||
"hash": "6aeeb89e835c9308ced743b8e8211f9ef89e5bef1817ea163fa831fa7cd24c26"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v23.12.2/cargo-mutants-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DC0393B8AEBEC7",
|
||||
"hash": "4a56ad34a236af00683dd8246f87fd4eb89453dbac1afc89471c52c7f0d4267a"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-spellcheck",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.15.7"
|
||||
},
|
||||
"0.15": {
|
||||
"version": "0.15.7"
|
||||
},
|
||||
"0.15.7": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DEA7C00640F8EA",
|
||||
"hash": "6c944067adde19558aff6b6eb0003e82a95a52ac9dd75465ba3df894eeac5b74"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-x86_64-pc-windows-msvc.exe",
|
||||
"etag": "0x8DEA7C002803985",
|
||||
"hash": "fef4eae8bd21d1edac52b00c7729fbabd7ad47bb6053e29025d62adb2746c93f"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-aarch64-unknown-linux-gnu",
|
||||
"etag": "0x8DEA7C0074205C5",
|
||||
"hash": "22c5ea30ca4bc86004022cffb671bdbf971d66f2dd564397e8a7647cadcf3ec8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-aarch64-pc-windows-msvc.exe",
|
||||
"etag": "0x8DEA7C002536910",
|
||||
"hash": "cc72699c01f192f160d2c402fa44efdd56b9ff5856c5b1d4cd5af1631ded48a3"
|
||||
}
|
||||
},
|
||||
"0.15.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.2/cargo-spellcheck-v0.15.2-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DD4A85530EF13A",
|
||||
"hash": "9b36eb04e83aaea2c943064fbb2e5a04d37a46bcf51dfd99495b74b09ff56455"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.2/cargo-spellcheck-v0.15.2-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DD4A8564500872",
|
||||
"hash": "5d70eac68be1dae5fb69439217581f79e642867ddd4b67ba258e224de6ff82a2"
|
||||
}
|
||||
},
|
||||
"0.15.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.1/cargo-spellcheck-v0.15.1-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DD49AEF852F898",
|
||||
"hash": "b96e4e73babd959aa138d1629b143180e83ebd8461064fa68e99e2e961560029"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.1/cargo-spellcheck-v0.15.1-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DD49AF09E6176C",
|
||||
"hash": "53e697b1016880ffe864dfba9fda68c050694644267557450881d52d9eed987d"
|
||||
}
|
||||
},
|
||||
"0.14": {
|
||||
"version": "0.14.0"
|
||||
},
|
||||
"0.14.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.14.0/cargo-spellcheck-v0.14.0-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DC6466EF3038F3",
|
||||
"hash": "6f35073843f2eb87990ef19c841c61ded5263e3a7ff38f885cfab22193b84f13"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.14.0/cargo-spellcheck-v0.14.0-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DC646705A424A4",
|
||||
"hash": "ad97a1471b7e718902ec385c3ad045a6afbc986f736d0c4986855ec99a79c80c"
|
||||
}
|
||||
},
|
||||
"0.13": {
|
||||
"version": "0.13.2"
|
||||
},
|
||||
"0.13.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.2/cargo-spellcheck-v0.13.2-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DC0E0760B5DD94",
|
||||
"hash": "f547b8f992dcc43f8a4106bae8b090ecb3fcb7ef6ce336081c22636f70e876d9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.2/cargo-spellcheck-v0.13.2-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DC0E07751C8D13",
|
||||
"hash": "f54fb8243497258115d1eb55b99bfc94ab3e09636c78665d3b6410885ba9190a"
|
||||
}
|
||||
},
|
||||
"0.13.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.1/cargo-spellcheck-v0.13.1-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DBC987279A3734",
|
||||
"hash": "17af34dbefad5c45d23df3e4e81b0addc78782db0ed2e8e491a1532761463e1e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.1/cargo-spellcheck-v0.13.1-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DBC9875250341E",
|
||||
"hash": "d18c19a3c5e7eb9ea516e691b54a4517a60517b6b1fb75b7f56a0c1dcc9b177e"
|
||||
}
|
||||
},
|
||||
"0.13.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.0/cargo-spellcheck-v0.13.0-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DB98F2A6C10BCB",
|
||||
"hash": "41e99240e55f38cc6d43d7ea9f2ccd448f584eefdc262129e4238f057d995923"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.0/cargo-spellcheck-v0.13.0-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DB98F240CB78CC",
|
||||
"hash": "57d45d5942d7ccd49599aae549c0bd5d906868eaeb39481088e55001d65f4784"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,785 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-zigbuild",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.22.3"
|
||||
},
|
||||
"0.22": {
|
||||
"version": "0.22.3"
|
||||
},
|
||||
"0.22.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.3/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DEA3421223A1E0",
|
||||
"hash": "9fd7d8136cbf7ab2ae44c046f4985c7a1aa6e2ed483187396df0076bedfa196b",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.3/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DEA34211D2F66A",
|
||||
"hash": "ac190e1055b35656f272635a48bab3254b0e8098d2a0a943021e031f1fd66e6f",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.3/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEA34211F131D2",
|
||||
"hash": "675804464634cf068dc206e9fafc1bd4557ffcc0b1638a1ff246d899b776fe35",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.3/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DEA34211BB6A1E",
|
||||
"hash": "6f86a78cf8be222ac08a68a944ffd8a1ef9d455c504097f0ffbd8bcfbe434a55",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.3/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DEA342118A3132",
|
||||
"hash": "29caf036bdbb4e6f07afea31706b6f386cb5a4db9a46a3a8b462b9b78157e08d",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.3/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEA342119092AA",
|
||||
"hash": "f71b91912d79d8d71cd86d8ce73cc69c0615800bf34a86f6e1ac81b70084e5c5",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.22.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.2/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DE9BB7B6D9505D",
|
||||
"hash": "c42788ed655c4a51509356ba082c84296d82669b261c9e1cfd91eb8a13d4efb5",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.2/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE9BB7B67FAE33",
|
||||
"hash": "2f80388c3c96142b6f0117ecbdb13be60b360a8a643e252bd7f163f012fd5a8e",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.2/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE9BB7B698E640",
|
||||
"hash": "4cedc2d2d9b6a8f021d05820cb29c0cc491d34cf1771a9a6ef6ce37c5fbf4d7c",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.2/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DE9BB7B617766F",
|
||||
"hash": "bb88821dfb46ffa9a4dcbc0468f668b982bfb70d20e3981a39786d53daf9d98d",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.2/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE9BB7B61189A4",
|
||||
"hash": "fa3dd887effa1bcd9e55ed65d1fc14c45cafa9bfd936e8bed273064344811c51",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.2/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE9BB7B5FF4EA1",
|
||||
"hash": "4be832e9d1022c78e1d7b21a8beeb7905a88ee52d80ad90d2eb66f60c1de2886",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.22.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.1/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DE6ECE4D08B61B",
|
||||
"hash": "b18ca96a420b4fce29cd397308289b1f34298ca9d425daa0b4450fc95ee3260b",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.1/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE6ECE4CB9B66F",
|
||||
"hash": "604c8c6e7321af4056448b304fe6da79e3cb337d2db04a63b8c78ae5b53d59c3",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.1/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE6ECE4CD7564E",
|
||||
"hash": "786ad41f0296caf6ce43a6b7d03415bb516e10f3f24f66dba0dd230967d6e301",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.1/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DE6ECE4C5AEA05",
|
||||
"hash": "09ad6d91af4c6676c4f86c0746471c33efd35d5bf659cd193f3b55838daa75ee",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.1/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE6ECE4C4C7B55",
|
||||
"hash": "cb269d208952433d91a5c21fee10cc012c87d265dd0af9152641eb33a95e12cc",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.1/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE6ECE4C5413E0",
|
||||
"hash": "14588ad1c0513cc68697ecd116004ae933fd1746e5c0fa3b272296386dd78559",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.22.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.0/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DE6B8BF4DF18B9",
|
||||
"hash": "a534a146e7dcf330562c273106d49a59f3bf66fc47ed4d49edd90f115ebf3d8c",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.0/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE6B8BF4A1B887",
|
||||
"hash": "69144357c0377986ff3bd70edd2efeab108d4c694243f1044c9d967cb0e8d014",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.0/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE6B8BF4C93856",
|
||||
"hash": "8c6c290e79efefd1e2067edc9c469bc19a7f94e1f08d559b8b1806f666f39447",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.0/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DE6B8BF4591A61",
|
||||
"hash": "4b9d4114936412f30425dbd98d49828276d367e79bf13f14beeaa66e0b3c6951",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.0/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE6B8BF45D5B5C",
|
||||
"hash": "0aefd23f23b888cdb43fc3a6d5ecf7e571a63ac728c267cd357ae05e0353a675",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.22.0/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE6B8BF466C6A7",
|
||||
"hash": "332d5bd29070e5260940de9e12e6dddddb7916d06b6cc0069e17bff18f18872f",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.21": {
|
||||
"version": "0.21.8"
|
||||
},
|
||||
"0.21.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.8/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DE6A4CCDB6D2B9",
|
||||
"hash": "d917abcdbd4340d8405a28f33e69c7ca521d3ad7c10d9694543120a585d65a17",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.8/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE6A4CCD513050",
|
||||
"hash": "4ae646349e779d88dba4d5175bd0932928c26205dcb257f8067b9ff50dfd142d",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.8/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE6A4CCD9283A2",
|
||||
"hash": "e4e719d543dbd86d46f2f60d74c4890bc6c45102c48c9318be2d319475dd17e2",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.8/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DE6A4CCCF9AEC5",
|
||||
"hash": "d34d0b7d69819876429a280d2cef5dc3f0d652904ed08fc8ccdaba9d1c7f9be8",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.8/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE6A4CCCF9D5B3",
|
||||
"hash": "d326e52def35bad8590e0ddaac6c93193c70f05dc07b7ec5dce80b997dbc6930",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.8/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE6A4CCD00D2AE",
|
||||
"hash": "ead4e68d077a84d7722f00efa7b57e08dd3ed3c8c55b3acf717690b6db82e907",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.21.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.7/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DE69D6A0620FBE",
|
||||
"hash": "82a5ec38bf32f27e99b64cbc8211cf7f20c3cb6c6de26c925fdb1173048d9e47",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.7/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE69D6A013ABBA",
|
||||
"hash": "15ee8536acc55ccbda52b93b90b4c9ef9db6a0b1c889635d32fda31c319062ca",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.7/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE69D6A0560F4F",
|
||||
"hash": "345e69dca97bd33e5a95f138b04e7c689f4d3456cf6afbf30108ef7be74336d0",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.7/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DE69D69FC520D7",
|
||||
"hash": "cb7160473d372816a19615c7c2603afbbfed85369159672cadcf5e4496a39666",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.7/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE69D69FC15485",
|
||||
"hash": "832c555bb94e9f4414c79965c94db010523871317d5d526baced5f0a1c21688f",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.7/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE69D69FCE6548",
|
||||
"hash": "4d00dd977fbec264d6bc58e052e9494cef845f33f9eeae204fc884132b6949d7",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.21.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.6/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DE624F2B16B6CC",
|
||||
"hash": "517115abfc7811825515eec0aa3157d74d4b35368b41086c43f8af629a0c2224",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.6/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE624F2AC71B81",
|
||||
"hash": "85f9fcdc4cf2315e3a48e930c941483fc9f61dfc9aa2e88e9f38d0b4917cf410",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.6/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE624F2AF6F66A",
|
||||
"hash": "ad8ea99b2bd85791a7e957ece1fc5bb0e47cd400bcec851cd45b98031396ce09",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.6/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DE624F2A7EF1F2",
|
||||
"hash": "febbfb2fbadafa98b89ee00a416e61463ce412019704ebe79c3a9403aa5aa947",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.6/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE624F2A77CE09",
|
||||
"hash": "114317fe5180ebdf3107549ae8335c7adb108ecb1b3db3783b3339ec0db59d58",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.6/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE624F2A8A56D4",
|
||||
"hash": "99e80faf83494fb3da3b3bbec588ed144ba0516188f3db7bc87043ed48774141",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.21.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.5/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DE5F2A44CEB061",
|
||||
"hash": "b66c92ddde86f0e097e833cd058ffbb3c10af4e9b238e25712230897d9335824",
|
||||
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.5/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE5F2A44809A15",
|
||||
"hash": "ecf5144ca2f8e4f25a71d77357c3b90190086a455b0cd26a5402fe4365bbadf6",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.5/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE5F2A449E87B7",
|
||||
"hash": "217376a766622c26450176400f63417f43968be21da28c894db38fa210946dba",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.5/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DE5F2A441AF797",
|
||||
"hash": "9080be8035b42610ecf1bf316964cd659dae8b23ab927e0768cffd39c0122d64",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.5/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DE5F2A441A5BFF",
|
||||
"hash": "7fe1426e65773752127e0f858de9883704277d7e478f2b10a1ed50d6cbc7c1ae",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.5/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DE5F2A4423797F",
|
||||
"hash": "2ddb6fe3c7546160f8d2d1081bc07d372f0736317ee5bd9570e545302b0545af",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.21.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.4/cargo-zigbuild-v0.21.4.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE5DA1C7B51C23",
|
||||
"hash": "75dd8e3173f6c8b0340942ebd812eddd862fde587a75741d14f9f56fa1c27dad"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.4/cargo-zigbuild-v0.21.4.apple-darwin.tar.gz",
|
||||
"etag": "0x8DE5DA1C7BCDB96",
|
||||
"hash": "30c271be5690f8bbe46f2b4164b9e0dc3f50f72d452cd2ca25172f46934a7ef4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.4/cargo-zigbuild-v0.21.4.windows-x64.zip",
|
||||
"etag": "0x8DE5DA1C7BF70C6",
|
||||
"hash": "46854ace1052da2b650819f22fc00bccdb1e2f824ed9ebb2f4b53a6f00b5b8c5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.4/cargo-zigbuild-v0.21.4.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE5DA1C7B78A62",
|
||||
"hash": "9b4b49b23ecf3dcbfee44f05dd2e0f5433c690e07d63a46c4d455120a55e12cc"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.4/cargo-zigbuild-v0.21.4.windows-arm64.zip",
|
||||
"etag": "0x8DE5DA1C7B6EED5",
|
||||
"hash": "da9bf7e916f86549145dee7e8bbeb4b4d36f92ef1f4aa5f89d7d72ff610df6eb"
|
||||
}
|
||||
},
|
||||
"0.21.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.3/cargo-zigbuild-v0.21.3.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE5BF87D0A51B6",
|
||||
"hash": "75357b6f733529ddd89e47f67ca63b22b4a2d6b27d118066b441c24a8a98a810"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.3/cargo-zigbuild-v0.21.3.apple-darwin.tar.gz",
|
||||
"etag": "0x8DE5BF87D18E757",
|
||||
"hash": "0094f9ccc7b325e98896da77e12388f0cb0161593e7182d0235346f1150c226e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.3/cargo-zigbuild-v0.21.3.windows-x64.zip",
|
||||
"etag": "0x8DE5BF87D080A59",
|
||||
"hash": "eab697b128ebd91e0248281c7981496e6c5801ff57c1299c77206a444018d859"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.3/cargo-zigbuild-v0.21.3.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE5BF87D12D3A6",
|
||||
"hash": "d0f1ce33a3b9cf9280d417a04702e68cdd1d688475f7b13d54dd7cf86b4a2193"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.3/cargo-zigbuild-v0.21.3.windows-arm64.zip",
|
||||
"etag": "0x8DE5BF87D1100FF",
|
||||
"hash": "f57a397377a27b184825d5ffc35b438ee4cda4304a5c946a6cacad6a362a9e9c"
|
||||
}
|
||||
},
|
||||
"0.21.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.2/cargo-zigbuild-v0.21.2.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE5B61AE98AFF3",
|
||||
"hash": "6c9192667c38090d6b554d10bc1a9ec9c9cdd56e2db957cd9bfb441c717414ef"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.2/cargo-zigbuild-v0.21.2.apple-darwin.tar.gz",
|
||||
"etag": "0x8DE5B61AEA60E63",
|
||||
"hash": "0812e3d18495adca531692e98b461856c8c0cf6619e9bb329bbdbffc885700ff"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.2/cargo-zigbuild-v0.21.2.windows-x64.zip",
|
||||
"etag": "0x8DE5B61AE94E39E",
|
||||
"hash": "80183314db6fdf65f303b733a4906bd3fb3a4c093dcac9753b4ca0ad44a1c075"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.2/cargo-zigbuild-v0.21.2.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE5B61AEA0E419",
|
||||
"hash": "d67b05434b84ee6518522ebabde47ae601c4e471c4984be95e4c208d750e9b11"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.2/cargo-zigbuild-v0.21.2.windows-arm64.zip",
|
||||
"etag": "0x8DE5B61AE95CCFF",
|
||||
"hash": "5ecf6ee927a0f368771c032f992e594e3ebff9a71945c1907e2f4090b27a354f"
|
||||
}
|
||||
},
|
||||
"0.21.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.1/cargo-zigbuild-v0.21.1.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE51D0BB0C5867",
|
||||
"hash": "7ec3bc93ba853c7b8297004d93d881575af64e41ee4dd213f2c91bbfbcf9aff1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.1/cargo-zigbuild-v0.21.1.apple-darwin.tar.gz",
|
||||
"etag": "0x8DE51D0BB1B8989",
|
||||
"hash": "8a29fe0c3cd7be8c880949032a6af06bb9725989a72c5856085dfdb34b4fbdab"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.1/cargo-zigbuild-v0.21.1.windows-x64.zip",
|
||||
"etag": "0x8DE51D0BB01B5F4",
|
||||
"hash": "25d881d855523405e31fa2b8a783b66d305645ac0eb0d90dc178ff210d9f0168"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.1/cargo-zigbuild-v0.21.1.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE51D0BB033ADA",
|
||||
"hash": "98a91ee6fd155b70e7ece7f7b7ea1388b3b8d4b782ea5e0b8f014012579ea031"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.1/cargo-zigbuild-v0.21.1.windows-arm64.zip",
|
||||
"etag": "0x8DE51D0BAFB5485",
|
||||
"hash": "3598f2ad615a5d22a0389e42dc88632228829c77d0522658d88d7ec9b147d5be"
|
||||
}
|
||||
},
|
||||
"0.21.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.0/cargo-zigbuild-v0.21.0.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE51CD3148E268",
|
||||
"hash": "a381b0c5725992c460dafe1c5a048c0d656fe4c9eb632f9c7b20e8c9dae21b3d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.0/cargo-zigbuild-v0.21.0.apple-darwin.tar.gz",
|
||||
"etag": "0x8DE51CD317D99F4",
|
||||
"hash": "bbe65e2228d980cf0f50b4753580c1b158198ef1d824cada727a3ad2865dc729"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.0/cargo-zigbuild-v0.21.0.windows-x64.zip",
|
||||
"etag": "0x8DE51CD3183D43F",
|
||||
"hash": "06adb484bb845c866e028356b4cd8ac8db00096a5ac24f528a7fa6e9183a4b04"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.0/cargo-zigbuild-v0.21.0.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE51CD3185CDE6",
|
||||
"hash": "e21bc69c5baed7957b8774d757ded88631c0022e6050398c37154f764c0ec4ce"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.21.0/cargo-zigbuild-v0.21.0.windows-arm64.zip",
|
||||
"etag": "0x8DE51CD319C9798",
|
||||
"hash": "0b11175a297e68efed2dbc449996536b35ee74a0d3210796ca9136c1044b4183"
|
||||
}
|
||||
},
|
||||
"0.20": {
|
||||
"version": "0.20.1"
|
||||
},
|
||||
"0.20.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.1/cargo-zigbuild-v0.20.1.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DDC591D69ED443",
|
||||
"hash": "742ed281f15fef6eaf49535ac10ffe98fb57913d0c4c88d6888d794043c05618"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.1/cargo-zigbuild-v0.20.1.apple-darwin.tar.gz",
|
||||
"etag": "0x8DDC59218EDC22E",
|
||||
"hash": "d5c7ac2e6f25fb76083dff84640cdf679c5da858b9c97631555c3185be2fbf35"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.1/cargo-zigbuild-v0.20.1.windows-x64.zip",
|
||||
"etag": "0x8DDC59251305DF1",
|
||||
"hash": "b0bb728ba068ee61342f40a2124b3d8d234af8f716dd416b7c1f794dfeb4e478"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.1/cargo-zigbuild-v0.20.1.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DDC5923C1E9B21",
|
||||
"hash": "e9631045cc5f33ef0d6d9186196192d70b8018bf7633626c3a7c1384e81b7f67"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.1/cargo-zigbuild-v0.20.1.windows-arm64.zip",
|
||||
"etag": "0x8DDC5925BF8E6C9",
|
||||
"hash": "c33134882efe6d0f83751650e4b1617411ecf62e8ba3eaf764ad5a4bbf5e083b"
|
||||
}
|
||||
},
|
||||
"0.20.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.0/cargo-zigbuild-v0.20.0.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD848CAA98CB24",
|
||||
"hash": "91b3317243437a5830830fb1b50677daae6ef192a38dbe96cf2db60a6a38e0c0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.0/cargo-zigbuild-v0.20.0.apple-darwin.tar.gz",
|
||||
"etag": "0x8DD848C425C065A",
|
||||
"hash": "c3ef9c657853968fae8d1d7f35e9ebb82e74c727afbb4ce0cae45847a1b71ff1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.0/cargo-zigbuild-v0.20.0.windows-x64.zip",
|
||||
"etag": "0x8DD848CA41F7F47",
|
||||
"hash": "8a1103d46dc65c8ced3166170bef8137aecda0378574e58f7d141a9a3477a241"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.0/cargo-zigbuild-v0.20.0.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD848CDCEAB516",
|
||||
"hash": "cc8d81e701587e6726d488f9a72a5048ebe7565050e933a8a0ff192ffaa986f4"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.20.0/cargo-zigbuild-v0.20.0.windows-arm64.zip",
|
||||
"etag": "0x8DD848CB0D358D8",
|
||||
"hash": "ea121bd4c5649e38af203af8fb2dcab51a0a8b5aad98a5bd7326b2ac6384099f"
|
||||
}
|
||||
},
|
||||
"0.19": {
|
||||
"version": "0.19.8"
|
||||
},
|
||||
"0.19.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.8/cargo-zigbuild-v0.19.8.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD490D612D2ABC",
|
||||
"hash": "f7fe3a25727e5b58e1b1d7fb8119a845675d441276214039cd1c2e3e49376180"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.8/cargo-zigbuild-v0.19.8.apple-darwin.tar.gz",
|
||||
"etag": "0x8DD490D767A3640",
|
||||
"hash": "9a807773528537ffd60d3b09a657a0a63b237a6cefb31155584646bf01aae302"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.8/cargo-zigbuild-v0.19.8.windows-x64.zip",
|
||||
"etag": "0x8DD490D84454E90",
|
||||
"hash": "8a35efb6041d35fea144e05e730531acfd232b1193dd2272804aeb1205452ed6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.8/cargo-zigbuild-v0.19.8.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD490D610F8ADB",
|
||||
"hash": "ca193cab2f29cb1380992fe51ed7e13ea759be519a4afdd045f70f01508f1853"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.8/cargo-zigbuild-v0.19.8.windows-arm64.zip",
|
||||
"etag": "0x8DD490DBC8F876E",
|
||||
"hash": "2f60fdbe8e2c7b8bd0562225a97a6c66f87f8966f532bc24bd86309961b5728b"
|
||||
}
|
||||
},
|
||||
"0.19.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.7/cargo-zigbuild-v0.19.7.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD1DD6FF709E0F",
|
||||
"hash": "f0888b50dfaa353885a6eeb1979f3ad42a153b34e388d4e6c944dbed5940d1c5"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.7/cargo-zigbuild-v0.19.7.apple-darwin.tar.gz",
|
||||
"etag": "0x8DD1DD91C5DB4A4",
|
||||
"hash": "d57225a8e3574c0cf4bb1e7ade0acdfd8ea37a70803c8f17b1087c69246c0b5d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.7/cargo-zigbuild-v0.19.7.windows-x64.zip",
|
||||
"etag": "0x8DD1DD6E31A46A4",
|
||||
"hash": "aa2de5926d125e0248dd7181d894d3a0d5873349da5ddacc32ed5380de49d07c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.7/cargo-zigbuild-v0.19.7.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD1DD6D01D2225",
|
||||
"hash": "64c0c8c8387f3ac3c5f610cd2f973eca50ca351c03bb4c386fdc981f09aa97a6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.7/cargo-zigbuild-v0.19.7.windows-arm64.zip",
|
||||
"etag": "0x8DD1DD715E23D42",
|
||||
"hash": "2997e25a9d591f2c1de275c19fa0e50bf536a6129f83147530a2df4b816d39e1"
|
||||
}
|
||||
},
|
||||
"0.19.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.6/cargo-zigbuild-v0.19.6.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD1D6C197AF968",
|
||||
"hash": "4e96fa4c6949f769b1d9765534eeeecc1cff1c68a2f14c2133ce725aaf2ab25b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.6/cargo-zigbuild-v0.19.6.apple-darwin.tar.gz",
|
||||
"etag": "0x8DD1D6D66BE92B9",
|
||||
"hash": "1a6ca0ba81d2ebfef6ca3b77c37924c87e994ba20acbf479f285b55d82c2bc60"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.6/cargo-zigbuild-v0.19.6.windows-x64.zip",
|
||||
"etag": "0x8DD1D6C1F3C234E",
|
||||
"hash": "96c62f249de011c1171bfec8e8f0167a8ea6fd2acc235ee0b159864be1f00fc0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.6/cargo-zigbuild-v0.19.6.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD1D6BF3997E3D",
|
||||
"hash": "7f1e6ae0163a604d18d39eeebd1ddf0ff1227a94831c516210c7d0b77efd5c0c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.6/cargo-zigbuild-v0.19.6.windows-arm64.zip",
|
||||
"etag": "0x8DD1D6C3E89704C",
|
||||
"hash": "8217239a1bbd6ee937da66e87d2aaacbb5afd10d275d72f5e54a481f67245332"
|
||||
}
|
||||
},
|
||||
"0.19.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.5/cargo-zigbuild-v0.19.5.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD10EB499E98B9",
|
||||
"hash": "3d4baf2a9067e13577a31623f9fa628c6415caea188591dca48aa378783e3913"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.5/cargo-zigbuild-v0.19.5.apple-darwin.tar.gz",
|
||||
"etag": "0x8DD10EC07B2E36C",
|
||||
"hash": "ecc421030d2db57d4e4bd2a29904243c9f59920e2634a0d2e9480ea4dedb00e5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.5/cargo-zigbuild-v0.19.5.windows-x64.zip",
|
||||
"etag": "0x8DD10EAE6228CF5",
|
||||
"hash": "589254e208526d901d2193f4470a14241ad636a35df60bfeb35058e93e2e0d1c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.5/cargo-zigbuild-v0.19.5.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DD10EA7C976517",
|
||||
"hash": "0715fcfb3881a51e2e663f176c4ba6ba8c3f9a7a346668cc5b957d237ad4d401"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.5/cargo-zigbuild-v0.19.5.windows-arm64.zip",
|
||||
"etag": "0x8DD10EAF12FE9A3",
|
||||
"hash": "abd4b87c1b22ed02df55b166fc86ab5269a16c3186f99786c4663fb64dfeea7e"
|
||||
}
|
||||
},
|
||||
"0.19.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.4/cargo-zigbuild-v0.19.4.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCF74715BF6C29",
|
||||
"hash": "3fbf6d78dc23d413c3c1196cc790598e6162baaf523f3ceebf565d6ed1738545"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.4/cargo-zigbuild-v0.19.4.apple-darwin.tar.gz",
|
||||
"etag": "0x8DCF7471D5CB591",
|
||||
"hash": "51b376a3b1a41dc09eeb197c4d25e6fd23e6a440e2a58956a52ecf88c8177679"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.4/cargo-zigbuild-v0.19.4.windows-x64.zip",
|
||||
"etag": "0x8DCF7472F0600BC",
|
||||
"hash": "bfc9c836fce7d0f0ca829b63a53f646b6f0ba35e6e0518ebbc18bcb5dee83020"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.4/cargo-zigbuild-v0.19.4.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCF74713191958",
|
||||
"hash": "2f84b923075b0fb62a5069b485c80005888e4ffba7ecf984f327b2d2fc8f3c6f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.4/cargo-zigbuild-v0.19.4.windows-arm64.zip",
|
||||
"etag": "0x8DCF747939158DE",
|
||||
"hash": "39d64a306be35497d66325983974db9d16d1dda3de8fd30ba7bf4799ff280fc8"
|
||||
}
|
||||
},
|
||||
"0.19.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.3/cargo-zigbuild-v0.19.3.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCDCA2DC25EFC6",
|
||||
"hash": "49d4796319f0b85039783675499d092cfbb95f33f9cc9e6feef239f7f23efe5c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.3/cargo-zigbuild-v0.19.3.apple-darwin.tar.gz",
|
||||
"etag": "0x8DCDCA0D37AABD0",
|
||||
"hash": "60348c23e14e212b11bb68eec3cf3b5db2d18461f02efb0066ee6b1ec87790de"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.3/cargo-zigbuild-v0.19.3.windows-x64.zip",
|
||||
"etag": "0x8DCDC9F69902822",
|
||||
"hash": "ba09c9f260500ffcf6837f57b06f1fc826695bdc28f69b0258067345b25661e1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.3/cargo-zigbuild-v0.19.3.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCDCA2DC4E31F3",
|
||||
"hash": "b3bd9e02e1fa8ef4cd0c96a9686f2a9ed8ddf17c175c4de71f8709ca11e83c4a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.3/cargo-zigbuild-v0.19.3.windows-arm64.zip",
|
||||
"etag": "0x8DCDC9F9CE2DE4D",
|
||||
"hash": "c624ac2b937991dd9d08e3d4b4c248ad3ea6ab6ea8e302754ad52b77856193e4"
|
||||
}
|
||||
},
|
||||
"0.19.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.2/cargo-zigbuild-v0.19.2.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCD7F42717DB9B",
|
||||
"hash": "004df391aa3bedcda64ce887a1e28f4c560a5afa417985f2e6a43dd57d1f7704"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.2/cargo-zigbuild-v0.19.2.apple-darwin.tar.gz",
|
||||
"etag": "0x8DCD7F991A9561E",
|
||||
"hash": "8dc56fc231d55522dcb88fa96b35db352711a7a86a9abaed76013c712ae58515"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.2/cargo-zigbuild-v0.19.2.windows-x64.zip",
|
||||
"etag": "0x8DCD7F3EC049C4B",
|
||||
"hash": "2ef56bf18329eafd2a8948b695c19178fe4f2fe7f8bef295f570f1492c916988"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.2/cargo-zigbuild-v0.19.2.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCD7F3F7DE776A",
|
||||
"hash": "7b323b138a49a684a811bb774f7a868131318bb5e0bd5bad20d44e7f6bf016a2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.2/cargo-zigbuild-v0.19.2.windows-arm64.zip",
|
||||
"etag": "0x8DCD7F4493614C5",
|
||||
"hash": "9da4d347bb1b26a10de5c9025561703c12ae78dc222205a2901a7ece739231fd"
|
||||
}
|
||||
},
|
||||
"0.19.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.1/cargo-zigbuild-v0.19.1.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCA02F57E9832F",
|
||||
"hash": "d90450f3b6cc40294263f09c1b8c04231e6b526f811f506812501de814737888"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.1/cargo-zigbuild-v0.19.1.apple-darwin.tar.gz",
|
||||
"etag": "0x8DCA030EA6943FA",
|
||||
"hash": "e11ca1c260632e10e439f28e8d87453a61fb6b8cd938d24523c4132f85fe3d37"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.1/cargo-zigbuild-v0.19.1.windows-x64.zip",
|
||||
"etag": "0x8DCA02FA6F628E7",
|
||||
"hash": "2e3f5f44d6619e0aab9ad80e9a46d98489f913af90a966386532bb359136ac51"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.1/cargo-zigbuild-v0.19.1.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DCA02F301C95E4",
|
||||
"hash": "149035fc30323cb683aea8f8800983007da27f3de22a1beb12d05e9fefc8ef06"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.1/cargo-zigbuild-v0.19.1.windows-arm64.zip",
|
||||
"etag": "0x8DCA02FEBAFBE0D",
|
||||
"hash": "26955ffa45d67751682ece010c640601127f7a4e00711eb251e59c8864a46569"
|
||||
}
|
||||
},
|
||||
"0.19.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.0/cargo-zigbuild-v0.19.0.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DC9119E4DF0AC7",
|
||||
"hash": "ab2e2f3a22409470ec7d71badc22ab89351a6ddaba5c4785a39689856809404c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.0/cargo-zigbuild-v0.19.0.apple-darwin.tar.gz",
|
||||
"etag": "0x8DC911B3D433D97",
|
||||
"hash": "9173594204eaacadd62e2f26a3c2365887ec24a4fa15f309023b8d4bbbc09dec"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.0/cargo-zigbuild-v0.19.0.windows-x64.zip",
|
||||
"etag": "0x8DC911A1AA0FEBC",
|
||||
"hash": "640b03357f568deb976cd0e0732db04f723498a0d4706d71ebaec05f8fc35db2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.0/cargo-zigbuild-v0.19.0.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DC9119C072F83B",
|
||||
"hash": "edc3d0966ed8c80056d36ace8998eb75ed2f3a71342e0825960d98c9eb3398a0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.0/cargo-zigbuild-v0.19.0.windows-arm64.zip",
|
||||
"etag": "0x8DC911A3FFF6228",
|
||||
"hash": "6affe535f6d37768cc20be30b8b65a1bcc196ae1efdad71d2a5c44049a081b7e"
|
||||
}
|
||||
},
|
||||
"0.18": {
|
||||
"version": "0.18.4"
|
||||
},
|
||||
"0.18.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.18.4/cargo-zigbuild-v0.18.4.x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DC64512B96B7E2",
|
||||
"hash": "bfcef631fe5ec5c0381d0028d47765dd4cef54ece10ebf2d76e62de6e7941d4e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.18.4/cargo-zigbuild-v0.18.4.apple-darwin.tar.gz",
|
||||
"etag": "0x8DC645162138D32",
|
||||
"hash": "b04e989f6df22d46be292af8c4f799467d6e60305fe6ab55f9bdf1c795a0c70f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.18.4/cargo-zigbuild-v0.18.4.windows-x64.zip",
|
||||
"etag": "0x8DC645155E600B1",
|
||||
"hash": "5a5ea2b4d2dcd6d9196d5ca72e76c0d0714dae1ad287d313b89b1d78bcdc8364"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.18.4/cargo-zigbuild-v0.18.4.aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DC64512690B73D",
|
||||
"hash": "8271acf32a08fc6073153fffeca5d9289dce7ae13a3a9d64cacf0600904fa7f5"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.18.4/cargo-zigbuild-v0.18.4.windows-arm64.zip",
|
||||
"etag": "0x8DC64516B51DB3B",
|
||||
"hash": "f5166b64a037508c4698e03bde3a57a53fde530fe604866050e1fef43cd5df6d"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
{
|
||||
"rust_crate": "mdbook-d2",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/danieleades/mdbook-d2/releases/download/v${version}/mdbook-d2-x86_64-unknown-linux-musl.tar.gz",
|
||||
"bin": "mdbook-d2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/danieleades/mdbook-d2/releases/download/v${version}/mdbook-d2-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "mdbook-d2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/danieleades/mdbook-d2/releases/download/v${version}/mdbook-d2-x86_64-pc-windows-msvc.tar.gz",
|
||||
"bin": "mdbook-d2.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/danieleades/mdbook-d2/releases/download/v${version}/mdbook-d2-aarch64-unknown-linux-musl.tar.gz",
|
||||
"bin": "mdbook-d2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/danieleades/mdbook-d2/releases/download/v${version}/mdbook-d2-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "mdbook-d2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/danieleades/mdbook-d2/releases/download/v${version}/mdbook-d2-aarch64-pc-windows-msvc.tar.gz",
|
||||
"bin": "mdbook-d2.exe"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.3.8"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.8"
|
||||
},
|
||||
"0.3.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE4D1050CFDFE1",
|
||||
"hash": "6601ff37d3f220db0c9617b85c7e80f985a13ea75e2b6bb88b5158ea429455b6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE4D104B08EF36",
|
||||
"hash": "0ce3bf83daa8f4d458d9acf3cc5e9af1fc85d864854439a8a7d45a9a48166eaf"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE4D106181D5F5",
|
||||
"hash": "89ba967c1f95b32d05612183b9752aeccafa749d5dce0680fb9dcbfda24285fd"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE4D104E5464C8",
|
||||
"hash": "84f37cb1d89f6fabbefb5581205f93035fe5d9f2ace32f01cb76622cb563a9c1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE4D104A941BA3",
|
||||
"hash": "dcd49feace49c4adce583cfab121885cd84b746fdad6ebc99ca36eb52272f849"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE4D1061C79129",
|
||||
"hash": "6cc7507acae02d73719b260dffd33c3b1d74029cfa97cc7edfe220f8489aef02"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -30,131 +30,12 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"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.9.1"
|
||||
"version": "1.5.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.9.1"
|
||||
},
|
||||
"1.9": {
|
||||
"version": "1.9.1"
|
||||
},
|
||||
"1.9.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB0597AC2C520",
|
||||
"hash": "6467f9ccfa847deb6098a0070990d68039b866576ee64af4492099431562a3d6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB05979E1046A",
|
||||
"hash": "de6cc3706968c90e97cb1d59ab7b1ba95c4aa22a4237a82f6ece94e8dd398fec"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB05979E0DD8A",
|
||||
"hash": "f42d0e1e729d2e840f4bd211f06254b07817e1919a86a4e9c3f547503b0449df"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB05979DF0AD3",
|
||||
"hash": "e0537a58c9eb09b8b2c638fd07f9cc3885db13194859d29eef71a1eb4972180a"
|
||||
}
|
||||
},
|
||||
"1.9.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEACFBBCCAA91B",
|
||||
"hash": "e3a7f9eee6336b5f3a6020430d2ff53d457295d0bb9e0f5c41a5d81ea962dc1f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEACFBBBD98FB9",
|
||||
"hash": "7dcaed930819d28acca8311222c1e978aacadeebd6915d6cf86821a3057616f5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEACFBBBC0A581",
|
||||
"hash": "a4505f5d862e97f5e8587268859860841b69aa99355963c67cc4d181ffec4fba"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEACFBBC01844E",
|
||||
"hash": "d51a66b157175a955a6332350885f127eee82fff94e7d1a2c1173b0b17878ec7"
|
||||
}
|
||||
},
|
||||
"1.8": {
|
||||
"version": "1.8.2"
|
||||
},
|
||||
"1.8.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAA75F9C0717B",
|
||||
"hash": "b7ce4906219974f33c0c80994fde6afe503cd8fc6e4c37fd75caf77f320d98cc"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAA75F8954F43",
|
||||
"hash": "6be5743e73b43bc7ef34d17b94e7fdce5f3eafa26120a67ce317b55d557ba481"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAA75F885D044",
|
||||
"hash": "d994a862ae5ded571da994f3e525c04e4afb8ee355e3c91135fb0ff78f8d1294"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAA75F8A93635",
|
||||
"hash": "11a05523e1e59c8322bae7bb49442eaa22bb355905222f96e723b9ca42dd4316"
|
||||
}
|
||||
},
|
||||
"1.8.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA51C82B100CC",
|
||||
"hash": "e633b553663ecf69b82f88235fdfc720c2cdb6390f0414837c6577b1e937d7ab"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA51C81E01D4A",
|
||||
"hash": "a80eeb3e37fd6127dbca77b965a4fba6f74d75029d69f2c73fdb195bf4cb3b82"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA51C81AB1841",
|
||||
"hash": "268d5865668d85fdd583d8bc59d8a21ff90502e44340d50a95b9adca10b65af3"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA51C81A8D0DD",
|
||||
"hash": "e6bef9defe12697f3aab6daeb9889645ce447cef91ff82f3eaa24174965ee018"
|
||||
}
|
||||
},
|
||||
"1.7": {
|
||||
"version": "1.7.0"
|
||||
},
|
||||
"1.7.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA2D8D2DD9B3B",
|
||||
"hash": "a9b0ed13e7f31964940e3504d0eeb481669b01e3d8b303db56d64b03decc0e2b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA2D8D1EE54B5",
|
||||
"hash": "50b5293d93e6cbb3d1f7dd590c7fec96f24edc05acaac710096ca535712da4c8"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA2D8D1EC342E",
|
||||
"hash": "ea8e848dde503b77f9f8cbc4820c51cbc310a30eb7c4c3d10ecfedfc4781e687"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA2D8D1FFF41D",
|
||||
"hash": "582aceb8eff0da07c0e78ce74ffccc12da5c18fa261aef7630ac2e6afcc8c313"
|
||||
}
|
||||
},
|
||||
"1.6": {
|
||||
"version": "1.6.0"
|
||||
},
|
||||
"1.6.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9E6794FD4A72",
|
||||
"hash": "b71c6e5006ab152ebe6ee021ba3280dadc681a1e723f48109ac4317d34c7926e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9E6794344CFE",
|
||||
"hash": "1a33cc0b9580ab5b7d9ba124113eb8db9cdd9191d6206a2e0d452d88b2ed40bc"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9E6794361FAD",
|
||||
"hash": "42ef50d65d62358e806827f78ef660ef58eba126a449a237cbd57ab727105ea0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9E6794327A4B",
|
||||
"hash": "18afc12cdb9e84b095f26a260880ef488ea0185d6ff9821bb38d2b38d2b70d63"
|
||||
}
|
||||
"version": "1.5.0"
|
||||
},
|
||||
"1.5": {
|
||||
"version": "1.5.0"
|
||||
@@ -17,6 +17,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -11,6 +11,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -22,6 +22,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -22,6 +22,7 @@
|
||||
"bin": "mdbook-mermaid"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MPL-2.0](https://github.com/badboy/mdbook-mermaid/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.17.0"
|
||||
},
|
||||
@@ -20,6 +20,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -26,667 +26,15 @@
|
||||
"bin": "mise/bin/mise.exe"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2026.5.9"
|
||||
"version": "2026.4.11"
|
||||
},
|
||||
"2026": {
|
||||
"version": "2026.5.9"
|
||||
},
|
||||
"2026.5": {
|
||||
"version": "2026.5.9"
|
||||
},
|
||||
"2026.5.10": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB33BE5AD7B48",
|
||||
"hash": "0badd6ac6188cbf4aa7d9159c612ed54b26d966ba1e9ea4841f6c973e13d90ca"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB33BE7C8F2F5",
|
||||
"hash": "4d1b38f30589e96dc5280280caf9f16ce40978aa1dab606a3cbff710d2c43ddb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB33BE917A0E1",
|
||||
"hash": "0c23d98ec8eafc5eb790188df68d402ad545913673cd40da41d183b6f3c5ae2b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB33BE27D3761",
|
||||
"hash": "3a4cf82ea33ee9ea903fe0d7bcb037b917a53aa155d6f5a7388d7661a47f6a73"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB33BE703C1C8",
|
||||
"hash": "f3eb105f2dc79dd920918fb38f0825f9ec9f0bef3a4478e201a94a352743a1fb"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB33BE88C0393",
|
||||
"hash": "b2764f48f3c910f7a10cb540ea84c476e9ba79937bf7fde4e67826d7270b2c3e"
|
||||
}
|
||||
},
|
||||
"2026.5.9": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB275BF874C14",
|
||||
"hash": "13fa1fcad6a0e0e1cc8a016601e72a9ca203aa2a4a5f9f845e63aa735ce15540"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB275C29D6F60",
|
||||
"hash": "29cb947094aa0b5097c378ad02f7ebdfdfe2cec0e123232d93744afda52266b2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB275C43667B3",
|
||||
"hash": "c0de9d8206636dc0627159f0ba87b2ed3287bfdc54676b99d73d9e76d24f43a3"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB275BA8A4112",
|
||||
"hash": "adedc3ea9e888cd4856aff142aa27783e06a9df08a61e388fd482776a9351eec"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB275C15218BC",
|
||||
"hash": "1695b7b2e7b1ed601a80e6f4a1379ace88b146a8f8d73c1c388a9a57fffe1968"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB275C38150CE",
|
||||
"hash": "4968e47666292e1f890ff3fa99bc4970c6fe94cafe327a4b4c605233463eb307"
|
||||
}
|
||||
},
|
||||
"2026.5.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB1FDEEFE723C",
|
||||
"hash": "4bfcd3a5c513bfa6036d8d7cad3cfb6989155d913d39333ab493d1988bc93e62"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1FDF1C91467",
|
||||
"hash": "05e72a6f57017a3edbde784720e7d11ff79ac9b48ad4aa8f4ca2b1dcc638da1b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1FDF35DCBAC",
|
||||
"hash": "1e58abd24ac23aa09c6d9ed35762ce27c1abd1c0739397a1a2cd9c0f56f9bff9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB1FDEAF53C58",
|
||||
"hash": "80036a854f6e4b0d96ca86cea6b72355b618516441728f067c6b3a4d79103c47"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB1FDF0EB1FB4",
|
||||
"hash": "7f9733967c152753a4dd5c99a90b5632c4efdfd157ed534d5b3c78d9d43cf9a6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1FDF2E0C3E4",
|
||||
"hash": "e174c7a09b8f61c3758162e8a1b13b1529d41eb8927b53bb10de8bea7168cfa1"
|
||||
}
|
||||
},
|
||||
"2026.5.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB10A2897A9EF",
|
||||
"hash": "844536d1da057de8cbe9a1eea0416f462bd96973402bc643029a0e0d7271dd5a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB10A2B8DBDF3",
|
||||
"hash": "32741fe6e31b01f81cbdb98f0abf7469cc682eeefa67908b932ccd17ed97e73e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB10A2D502EE9",
|
||||
"hash": "7930487f8d4cfd9a2349b24e2698bcb1eef4b952e8c52e3444a8c1bb1c6d2aa2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB10A24A9F4FA",
|
||||
"hash": "a13239c0e822b3261e6ea05b9b8c6c98d78bdeebe5ba20ab22c0fa25bbf72e68"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB10A2A96B890",
|
||||
"hash": "40fd197440938ca71b07862eacce640fdf136df75aba6ed5fc397be9f9117c77"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB10A2CB5D542",
|
||||
"hash": "e598fe431ec5f8b0c522615440ee27c955e5cb6656ba2f3c4b40acf42c2fd647"
|
||||
}
|
||||
},
|
||||
"2026.5.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAF768EE11E62",
|
||||
"hash": "99284e187cd1fcc09ffd2d35c61770141f44e8990a2a866594010c5f94b21fc9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAF7691E0027D",
|
||||
"hash": "3bb6a29f11c4e68bfc419ad5dbed60b2417792f8cf5c72308be7b28a322d866c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAF7692E18389",
|
||||
"hash": "6a9ea4bf66aa42cd3d70c9439e13f7050ff7971129ada700b08887f03eb85065"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAF768B476BE8",
|
||||
"hash": "e52d17e41d6e3300ff5ee5e0065a28deb5dec379f4a237fe06cf28525adf4612"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAF7690277143",
|
||||
"hash": "cfe18c56b37192cdd82ab48d2951e0a9ae09523b21db2783985eb34108454e7a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAF769266EA1F",
|
||||
"hash": "be39174fbd2888fb4a7faaa5a2898de58f07c5ce8da799d0f9eaa4d5ec4d194d"
|
||||
}
|
||||
},
|
||||
"2026.5.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAE84398D4E86",
|
||||
"hash": "417fa46792d4b2b9a4cd3682e9fb58962139bb736509722d858b86199b3f45a7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAE843BAB0D4F",
|
||||
"hash": "b1e363263ced6bb20a2da7989fb3dda213dfd47df56ba35e64597db92d931098"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAE843C9AEED7",
|
||||
"hash": "d67c4c001e368a9f403c11d268c5ffcfeba586466eedb9db3d1ade77233a4e16"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAE84365F0486",
|
||||
"hash": "2694824cccf8cbfdac95062c1958e6e316e3f4cc8681a3300b388cbb8d35ab20"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAE843B292925",
|
||||
"hash": "2994f42540fee4291a895cc5e3521df229e358884e401033b7dcc5e21eacbc1b"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAE843C6B1412",
|
||||
"hash": "06587ba66d031b1f3fbef3b9a1b4df7731bab0a7de350f67a3156cdcf4e28bd2"
|
||||
}
|
||||
},
|
||||
"2026.5.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEADBA8BC5AE8D",
|
||||
"hash": "96aaa896d9d3c02a7f72ff92f85b879afb7e9dcf92d81f72d873aa4d330b2615"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEADBA8E5CF79B",
|
||||
"hash": "301b5f875b9ac34d5535126aec6400c2c2b540761f137cec874fcb73d577e116"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEADBA8FDB59F9",
|
||||
"hash": "3c66193570f51ca33198e31d6f685ebd9d094aa28b46619be18f8c3825df015e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEADBA877F3EE8",
|
||||
"hash": "3c2ec2ee50066c731d4c4492409ed234a2275f9836df02807637c1ea72c96ce9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEADBA8D9F37F9",
|
||||
"hash": "740210925b3dd87de72b0e6dc428176716a9870c16831f762916567dbb9252f4"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEADBA8F6B150C",
|
||||
"hash": "c9c9ff3708df345b9c32cc449f230865136e2d854d4896d15c951c209313d4ee"
|
||||
}
|
||||
},
|
||||
"2026.5.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEACF30926DA73",
|
||||
"hash": "dd30b798647d29593ad6ea72882e8c6293ee6f3b10f1d7a12ed08e725631ef8e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEACF30BAD955A",
|
||||
"hash": "184d925d4325d85b932b2d60bda148851364fd93ce8734e8061041822eed3fd5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEACF30D12994C",
|
||||
"hash": "7ac7edbbe47399b9c8c8a151b31d94056b5059a4251820372e96f469f97d1d23"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEACF3054F9DD6",
|
||||
"hash": "9d756fbbcc50d78cb5772e4d260d8018f9a6f9bff226f17c8fb70a0d899572de"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEACF30AE815D4",
|
||||
"hash": "22a65d3906a68ac415263ba6c4b9fe23c5c35e5dfd67c8440790a1023c032c51"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEACF30CE96D98",
|
||||
"hash": "9da9f55f7f32488a40f46c7c66c4e7eed995b9370f7f09cf0bf61cf2c3f3a13e"
|
||||
}
|
||||
},
|
||||
"2026.5.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAC3BF99830AB",
|
||||
"hash": "6663a7af02a23dbff5ea421c8bab86fca72c3969db3adf880b8a149131c5d2b1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAC3BFC39F4F7",
|
||||
"hash": "a38b4b7fe61a3ab600ed1e638e8f9f741c690115642e07193d5490571fcb74cb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAC3BFD7E279E",
|
||||
"hash": "72638be34cbf2751d352def7bc77235ec05e736c2c8ddde81e2f93d1a93eb2c9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAC3BF60A7DBC",
|
||||
"hash": "9e38d879e684e95c7412fba4e50721fb8874d2884430ebf39e9b17641a2defc8"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAC3BFB3C3FF7",
|
||||
"hash": "01e821f5a60efad8296a249604234e5dd4db46b4b417831a8bf0d92f34b5d56c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAC3BFD0CAB9F",
|
||||
"hash": "58ccfa0d4aa603c5bf3955f3887dfcc76c452a13b946d83c0aee009a3fbf56c7"
|
||||
}
|
||||
},
|
||||
"2026.5.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAAEAFD6A3D30",
|
||||
"hash": "5cb9f8cc7b071c5c5931fafd79bd523a81cbffe6bb23d56daea7b0be86d0a086"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAAEAFFDCC12D",
|
||||
"hash": "ed6c715d359bf2313fe793bc44269e38df24246c91a453fffbd0b9d94642af8f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAAEB01618438",
|
||||
"hash": "a82d52bdf35e29e93c264f5dff2bebcc50030101f98dc0902ea039a043b003a5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAAEAF98AF700",
|
||||
"hash": "375c6a365bf7a42b3645fd3816fbd11c94c1d04af9df49910fbe11929878a365"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAAEAFF27F87B",
|
||||
"hash": "0eeb03e5f64f2c8fa2b0bcdb3a57fae11057d84d1f24381eb34b90663c68ffa3"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAAEB00E9591F",
|
||||
"hash": "d5b6c29be4711ede84b2f08b54b626e6c36ba7b1610b8193d81dcf3a3c0728a4"
|
||||
}
|
||||
},
|
||||
"2026.5.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA9471A2EEE95",
|
||||
"hash": "f47a11b64b32f94db74b6792601bd9b0440bf4fe4d1e54056738b3e1eeff13db"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA9471C55F180",
|
||||
"hash": "8335873c9280e2dca0b1ceeb0298f2905188732fe128e0f97672f7796bdecbd7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA9471D67181D",
|
||||
"hash": "053de50b0ee574a40ebcca667c17e27b06423bfed3779c623970e0e36e1d6405"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA94716D421D2",
|
||||
"hash": "9ff141301ad0eb05ed98c45195de6af9f4f6a2b7ec8ae1acab845e65e4aa1c43"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA9471BAE1289",
|
||||
"hash": "c4b34f7d4831f7d296bbd3b1ae50ecca5cbe404650575472c0db6bcaad8bb4e5"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA9471D4C0D77",
|
||||
"hash": "43bfe834b2c420b467114cea698f08b8aee26b6be748ec046e8a06915d5003ac"
|
||||
}
|
||||
"version": "2026.4.11"
|
||||
},
|
||||
"2026.4": {
|
||||
"version": "2026.4.28"
|
||||
},
|
||||
"2026.4.28": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA6AC256245CA",
|
||||
"hash": "5876c4febe57fc5350eade9320425ab96f29e8de6c6be620754d5e9e4920ea1c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA6AC290CADD9",
|
||||
"hash": "c590f28b9e04085df73736fdfc4a1f6eef3b866d730c7a061aa2df46c8cf1c66"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA6AC2A741EDB",
|
||||
"hash": "36db52c5bbb3c825f753fef58b3ea4389ba833ee9a455b05e6ee2b9d657d14b6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA6AC206CFC59",
|
||||
"hash": "7290ef70e3d46cc54c737f7a2084b84c05008c30d3fbb40ebbf4e68b7c84096b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA6AC278D151C",
|
||||
"hash": "0b226fa0b96f50bf41a35f96e8ef166e3d7a834ab7bfad4f3f1a12ff928363f4"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA6AC2A4EBF8E",
|
||||
"hash": "9d87a7d985d3082df9010d58d7ed5b08c0778afd5cefba84e3eb674c50176a95"
|
||||
}
|
||||
},
|
||||
"2026.4.27": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA613D6EEA7AA",
|
||||
"hash": "72df029f60f926f4c1a0619fbdfac6870d4ce7354b074d3be82eeed557203660"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA613D9552C3B",
|
||||
"hash": "f55ec19657cbe15843067d22e854bc89db874b0142c122a82f8db38d14f52243"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA613DA874A60",
|
||||
"hash": "30540c4443b69777682ca74211ca283006f110b23f2ea4da96713b29d7766fdb"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA613D3075433",
|
||||
"hash": "6d525c6cce79c4a0aa570eb22bd7041510c2cf601ddea85b028fcbab37dc1268"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA613D88B926D",
|
||||
"hash": "95493bfc1850c4df04f8e4417bd9e40a5fa1001b925ff43a92db7056afbd1d6d"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA613DA8136C0",
|
||||
"hash": "2de70631d51747d7bd39feaf08f4a5ae6f36a9167955cf71fcacd84b2ed3f8c0"
|
||||
}
|
||||
},
|
||||
"2026.4.25": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA5227685D845",
|
||||
"hash": "238b647dafef3afc5f74892a1f58cdeadf8682fe54d5dabaefa114f72bca6453"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA5227989E63B",
|
||||
"hash": "d0a0f670c28b823e35d4a8ad963ebcf1402db55205575ebe0357bf40ac469283"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA5227B378709",
|
||||
"hash": "d7e2d58adc30e52f45af4a8e3dcf031b6af341f425918741439a5e35526ddfae"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA52271E57B1A",
|
||||
"hash": "41ab437afbf42ec653329308374df8da39e5a32805327994e75c8b50b470a06b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA5227934377B",
|
||||
"hash": "6ebafb7f53bdebf0cf76c86b174e742e6321f45597ae9a5e6fafa460396d99d2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA5227A9F74C9",
|
||||
"hash": "5a311314c3ac9487d91efc6fc5b35b4f934fbed03d0f6a01e21188a5c84892b3"
|
||||
}
|
||||
},
|
||||
"2026.4.24": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA45161A9D475",
|
||||
"hash": "9307d627f50c0325c33ef964723a9845bf80bfd5fe3fa4564ccc78a5ffe47900"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA45165319942",
|
||||
"hash": "a00d7ab6e26ed778887b49c770f7893586ee4f86e46b80b7e869201a000550c6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA4516689D916",
|
||||
"hash": "b8072dca6c8399dbda929db95ff2a1fa261833a2f1dea7e77bc026c8d825d28c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA4515E1EB80D",
|
||||
"hash": "b5be9ef118acf0935f654a9380d5a4a8be782830063fffc006511f1023acd599"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA451643D76CB",
|
||||
"hash": "305aa9fc58c374dcb81b370e3ac7ac96fd13d53532252cfaf384fbd7ab9ad2a8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA4516611AE03",
|
||||
"hash": "4a6ee8e3eb11e3f34842166a4594e6a2cfab4a9df867493415c3d54d663d1782"
|
||||
}
|
||||
},
|
||||
"2026.4.23": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA3DBFFDA9F73",
|
||||
"hash": "43c9496202b5c896c2454e5c62f73dc1850181cb0c5e13b6df5d72319c5434d8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA3DC01B20756",
|
||||
"hash": "1e7a2b9bd836f59039d20fc82c780d7b8c78e5dd1dfc138c0020b1b180c3192c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA3DC02E55C98",
|
||||
"hash": "fbfc8913b6e95cf24be6e2a6d83bd3059ec953e47570793916fc8afb3b1b66b1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA3DBFCC3463D",
|
||||
"hash": "3c61f6ad05e662feaece6feccdbb0c075e787efbba5a780272133b02282c95f6"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA3DC010F04E9",
|
||||
"hash": "c5ab822d0e3435ae4493e31a484cf86b2a819522eedad5555f5aed45bfac4545"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA3DC02747C4D",
|
||||
"hash": "766197d37306009734a3696def00448cddb8f0073d4439c75b7bcb37f1882191"
|
||||
}
|
||||
},
|
||||
"2026.4.22": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA2F9B9C7884A",
|
||||
"hash": "a80e2e1d459f4dc9e66f2fd3dd038933ac112f8709e8e1116b22945548303c8b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA2F9BC7B8681",
|
||||
"hash": "63887b6deabe69924e163659623fb09269372674bf2b76d98716c3754852dc6b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA2F9BD95A3CC",
|
||||
"hash": "3e9b7cab35dfdf888bdc890e86fc72369aef026bebf867199b788e38a887ebea"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA2F9B5F5EE53",
|
||||
"hash": "62362e63f73c92af02712fb62775af77264f9d16614ccbac5a470567b212f0f7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA2F9BB9AAF4E",
|
||||
"hash": "f3c00057a7ac975be04df24f95e1c987bda52588af1abdce1271121256fc82c8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA2F9BD941EE5",
|
||||
"hash": "0c6f2488396dc07c9ed834dbb7fc29ea59a738e10d72a590ae513105939958ac"
|
||||
}
|
||||
},
|
||||
"2026.4.20": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA1F73CD03817",
|
||||
"hash": "b45fafb4dac8468045575671e881888c8bea5c3ba3450805a1d068bc6fe34f9b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA1F746AAB073",
|
||||
"hash": "1b1fd7e0c4b2c5950ab4cf5df5b560b5ab5cce18f9e772e38248974dcee7ec2e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA1F75EB4F213",
|
||||
"hash": "b25a0edadf7398586f1dd721410cf3528f8ac13d9a9dd280d2f982273af2137e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA1F735D92407",
|
||||
"hash": "18fee09da992de537c563e07f352341a7bd6f1fbbdeda3b86d7a0d19a35975ae"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA1F742C52FB7",
|
||||
"hash": "d9278c027385e1ff90fe1a57c7a25ab71da906f9f184e148278c9efa5d6ddcc6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA1F780F740FF",
|
||||
"hash": "24e03b67a95d6be74d166f2da56c155fd531d9ef1b2c18ea97228b9608c94d83"
|
||||
}
|
||||
},
|
||||
"2026.4.19": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA0D59752D510",
|
||||
"hash": "f037a0877100ac3f9b747d6f3653bcb031d4a2d246b26cf1daca8418317da6f6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA0D59A19357B",
|
||||
"hash": "ce274ebeb8762e059c171fca1d0a7d8170f9870617b8defb7f2ed5ac798f9afb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA0D59C0850B4",
|
||||
"hash": "89407035a42f108f8960f6464f2903477e5bd023adef4d039427d2b1cb390bd6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA0D591D041E2",
|
||||
"hash": "a9c1f9b5c7f53714c81298ce563319bdee94dff29645eb935b3afd5b92a81dc4"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA0D599009CF2",
|
||||
"hash": "0785176288afc613cc152956bca905b7a47b91232f1b360fa9136e594af1c593"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA0D59B7E3862",
|
||||
"hash": "eb5910556fa13d6e85ff22c455526687525e3d412725370f62e13554e672e419"
|
||||
}
|
||||
},
|
||||
"2026.4.18": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9E2E39FC992B",
|
||||
"hash": "dcb0187879dcd8adb0f26279f08f9b06f7b78fa3fea3fb95ffd4db72375201f4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9E2E3C75312A",
|
||||
"hash": "78b95c4a26d4c7f2bbda91dc119e1001eae33aade428f134dc6f1b6857a02cce"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9E2E3D783715",
|
||||
"hash": "0651d43232b99d579f63ee83fa745f2418b37ae187b3f82322e9a2fd2192fe9f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9E2E36AB5E0A",
|
||||
"hash": "a451af75120d69139c3a88622299a893c2ef6eabdc80ec1226e2296ab6cc3432"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9E2E3B93975F",
|
||||
"hash": "65b8e5f3a8654d725ff3af7781e447e2ed130dcdf412ee937cbd43ef64bb7629"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9E2E3D5D7A28",
|
||||
"hash": "b2107c8a8a21ae6bf7d9e89efdb60a814864dd7b99c7770175896273bb798c0e"
|
||||
}
|
||||
},
|
||||
"2026.4.17": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9D70541A0D1C",
|
||||
"hash": "5c661249b75506bdc0a133d91460544b9a0c096c40cdb60a5c8d9e60bc144897"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9D705805C8FD",
|
||||
"hash": "7925831a68bb119ae0a744408ab646b476f6309720b46d7f5ab466613ca7ada8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9D705A337B82",
|
||||
"hash": "51bf2412db91411717e5b34bfdf4ec86428abe20de5115c71c3c2ae96baee5de"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9D704E988A27",
|
||||
"hash": "e9e47b246b73f84348736f48e909424865a01d0d5e853df51d77da33d53ae84d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9D7056DA3305",
|
||||
"hash": "ac0251f8ccbd48de250aa866a05637b74439b22f815a894bd47fce5d52e209e7"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9D7059853AF9",
|
||||
"hash": "efbeb472c5e30ec6715ff3722a099c70191da00a2324cfdae16c4c2af3e55103"
|
||||
}
|
||||
},
|
||||
"2026.4.16": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9C757DA1C42B",
|
||||
"hash": "3dd389bee8684c6e8c400b2d44a33a1087981ae287b7c98816e3537f524287d7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9C7580347D88",
|
||||
"hash": "547f3ed469fc97808b8b82e776ad74f63ffa34ac93a6b2b40cb69473dcb4e240"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9C758180BD2A",
|
||||
"hash": "9bf630a213b2cad0560a16ba6635d521b9c47d5fc48861c7a781805bb6c393b7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9C757A63389F",
|
||||
"hash": "5328c096b5a7aef266ee3c8495c3aab7f916c294c034b4488da2a7bdb40b76cf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9C757F339817",
|
||||
"hash": "b394f42bd7d3f9c4a1edd455f6839eaa32f14265fee8ab76888cf910e76e58ed"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9C758151F28A",
|
||||
"hash": "82405507919f77784561d980da7f94cf5589c8d56503ada9d804996672324e04"
|
||||
}
|
||||
},
|
||||
"2026.4.15": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9BB9F97262D5",
|
||||
"hash": "7c5d9b3bc7af393714bbf4ba4f138aac7c6250583a07cd03e31748cb100d295b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9BB9FCF9B36F",
|
||||
"hash": "0e77713b77c810edf3e1fce1865610675c87db2bac8d0818841e8728335833e3"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9BB9FE91741A",
|
||||
"hash": "626942dbbd3e4b5b1694e5ceb6e2fc5368cf8f9e526cd51674b0692a2e33d7a4"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9BB9F5215263",
|
||||
"hash": "54b39f73e6eb18bb34b92ff00758f765e7c4d1c9858eb7855e01efc48cf56ac1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9BB9FBCE9228",
|
||||
"hash": "e75e1ee1204fe55ae3ec7da54b2476332609fc78ea4c3633c6a95115e148624e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9BB9FE20E18E",
|
||||
"hash": "a109fbf6bb255f9113aa823bd2bf3a87afcfb1d2c09b672bd8c207e5426b7371"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
"version": "2026.4.11"
|
||||
},
|
||||
"2026.4.11": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -1,78 +1,15 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"license_markdown": "[Apache-2.0](https://github.com/google/osv-scanner/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2.3.8"
|
||||
"version": "2.3.5"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.3.8"
|
||||
"version": "2.3.5"
|
||||
},
|
||||
"2.3": {
|
||||
"version": "2.3.8"
|
||||
},
|
||||
"2.3.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.8/osv-scanner_linux_amd64",
|
||||
"etag": "0x8DEACC126BEB6F5",
|
||||
"hash": "bc98e15319ed0d515e3f9235287ba53cdc5535d576d24fd573978ecfe9ab92dc"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.8/osv-scanner_darwin_amd64",
|
||||
"etag": "0x8DEACC126942D4E",
|
||||
"hash": "b8a80a9f14ca4c0cd0fc2d351b28f740da9e6a5b18385ac9f9d083360b5b504e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.8/osv-scanner_windows_amd64.exe",
|
||||
"etag": "0x8DEACC128882583",
|
||||
"hash": "cb04e79dd9698a7bc821bbfdddec916a416d1409fda79c927c509d37d00c9716"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.8/osv-scanner_linux_arm64",
|
||||
"etag": "0x8DEACC126B3EDAA",
|
||||
"hash": "8158b18edd2d03b1a30d905ca91b032bc62262167be8f206c27114f08823e27c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.8/osv-scanner_darwin_arm64",
|
||||
"etag": "0x8DEACC12887FE9C",
|
||||
"hash": "a8cd6507b06239f463a7642430cfd2d154882f150f6e30cdc0653e28dfc34216"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.8/osv-scanner_windows_arm64.exe",
|
||||
"etag": "0x8DEACC126A2C2E6",
|
||||
"hash": "285d1fbcf2c69ab5ee38ae3a850ab46e83f32ef1cd5f3c4c9eb161cc493f6d52"
|
||||
}
|
||||
},
|
||||
"2.3.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.6/osv-scanner_linux_amd64",
|
||||
"etag": "0x8DEA71BEE7568B3",
|
||||
"hash": "f689e183ef0d573d2459738aae457d411a26241ae58b5088de1af288b3355604"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.6/osv-scanner_darwin_amd64",
|
||||
"etag": "0x8DEA71BED1E865D",
|
||||
"hash": "d5c91db387e0559b12136106bce5a57dbcea6fac22942721bd25b2334b28db28"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.6/osv-scanner_windows_amd64.exe",
|
||||
"etag": "0x8DEA71BECED9B41",
|
||||
"hash": "14856196d681e18238b41d4741bbe0558bef157c4b3b49d618528294afebe19f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.6/osv-scanner_linux_arm64",
|
||||
"etag": "0x8DEA71BECF8B260",
|
||||
"hash": "e6ab0955cc906f308704575a608d28e55068d00c7fa7f47797131c89b30c0373"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.6/osv-scanner_darwin_arm64",
|
||||
"etag": "0x8DEA71BED22798A",
|
||||
"hash": "3d7a12f4349a9e8f822513e5544d4a747ab53b7225d4bf5a2d00211cbc9dfe19"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.6/osv-scanner_windows_arm64.exe",
|
||||
"etag": "0x8DEA71BEE3B86FE",
|
||||
"hash": "5edd366ce55b696dbe74237987d8947808c400721b0cc4852f8224fbfd9f3c17"
|
||||
}
|
||||
"version": "2.3.5"
|
||||
},
|
||||
"2.3.5": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
@@ -29,6 +29,7 @@
|
||||
"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"
|
||||
},
|
||||
@@ -38,184 +38,12 @@
|
||||
"bin": "prek-s390x-unknown-linux-gnu/prek"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/j178/prek/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.4.0"
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.0"
|
||||
},
|
||||
"0.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB1A6F82BDB36",
|
||||
"hash": "56c555b33eb8ddcc6d7a33525225ddb536c6a516a2db0c83b3ab456ca3259022"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1A6F7A17502",
|
||||
"hash": "fd1a81e1659859c537b274afc44f8c500e400118592aa70cf3d5f8f40877a0d9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1A6F7DC8DD0",
|
||||
"hash": "8180ebab47427c4adc029b02b2e91e743cad01f7335063d6e28a0e7748f724f7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB1A6F608F1B2",
|
||||
"hash": "4f64e600ca19f0a7f98ed76afbe764336d1d333a80a431dfc48f4108accc488a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB1A6F5C49471",
|
||||
"hash": "952667b826c7f9ce764b0a567568c3e09146ebf35c5912bfd42c2c6eda4d344b"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1A6F5B369AC",
|
||||
"hash": "92c7107ddec8309d65acbd2e0da8ff4d9a27a026c777980f40fd2be5a9beba25"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB1A6F76E6970",
|
||||
"hash": "175d291ede5e5b651deb29f231e836b80ab3993fe11e053b8919562b014e13f6"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEB1A6F78166E1",
|
||||
"hash": "41c947a788c670b18c01d310e82a25f2e24211df81c3380829184ebb01f453a2"
|
||||
}
|
||||
"version": "0.3.9"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.13"
|
||||
},
|
||||
"0.3.13": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAAD16585793A",
|
||||
"hash": "e10cb36c9181044cda34522899457458e3551396dbc4dcf60e1ac1a8d7a71670"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAAD164CE6904",
|
||||
"hash": "2bbfdf15cfe6e954b98cb27094828f5c55a8bec0a02cf55041f783c71e3b8955"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAAD165069ED8",
|
||||
"hash": "ca32a6451cfdd22a27d99313b3a2f91eb0ce6d191eb8e35e2467f1551252ebbb"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAAD16312F4C4",
|
||||
"hash": "af3122f5ddd69644b7cf4d3e3263305e7e2d12e03be2cb56e8888493ff4d9e72"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAAD162CCEBC5",
|
||||
"hash": "0b3b3dd0fbab7b95217280248196bde741b47b8de7bf60de50b4a12a9cc17b1f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAAD162A434DC",
|
||||
"hash": "892cb69e81c5c77c8af23dd930d4bcf578b8f62765ee00e3ba8fb76d2035eb34"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEAAD1647231E0",
|
||||
"hash": "8cc1fa33a4cc1fe97312d22558140842324bcc03cde679c01d49bd5d0e16a153"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEAAD164AE81D1",
|
||||
"hash": "dd447503753d9269894cf9cbc651c493aa0530525bee12f415555d3772860a06"
|
||||
}
|
||||
},
|
||||
"0.3.12": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAA7D00F52541",
|
||||
"hash": "6e4874a2d83451df4946e81f161dc8c6bdc675064cca1f2e1e8b0921dc862ae8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAA7D008188C4",
|
||||
"hash": "ed4aa96e2c71a29d30d5e8e8b173155cda9f6aea9822e4773ccff70da5a8287a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAA7D00B66709",
|
||||
"hash": "b75cdae3279806c7a046b18c45c601fe3ec1a380f11911bc39c5273100e18fce"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAA7CFF326611",
|
||||
"hash": "2d7bc8ce9bb8521a2b9f67ad23d556fbf208a8cf5d141f09c3dbae919df756aa"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAA7CFEEC3638",
|
||||
"hash": "8e31a0e21c2d70e0583500f728e2c1aaba45c397a2ef2c4ea43afb7cd64f5d04"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAA7CFEF85D7F",
|
||||
"hash": "6f69d45aa32571e9c34104564dd06a32b7aeec9802831a00a5074fa1a89d5ba9"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEAA7D0042F174",
|
||||
"hash": "c4b23c1b7381f251499bba7e5d01c356a39b313f8fe0a5bf53a0e1f4f7d8d91a"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEAA7D006A2383",
|
||||
"hash": "5b6073abfcfd85c692c6e0f71185f24af911b55d6303a4dfa65fb0c6951d3ede"
|
||||
}
|
||||
},
|
||||
"0.3.11": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA414EFB86FDD",
|
||||
"hash": "7671b1b17dd5a3c01e1772323b2688ab2956d737f2b5fdd15f49a7eb14eff837"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA414EF57351C",
|
||||
"hash": "53cd52b8ed1192d6a183775027e9d68a39e8e2470932c4caf20ea548c0bd9633"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA414EF76A7B5",
|
||||
"hash": "a40604c7a10e6876423fb53ce3325615a2e90b5b3f09e15676b1d2fe74e56948"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA414EE21BE76",
|
||||
"hash": "057484ce99ccbe8ecad17ca78748098cfa209d4018fa0182181d95b2e63057ff"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA414EDF86BF6",
|
||||
"hash": "a01aebbb7fcebeb1cb5c074e1a3d00cc51a283a5bd8990fce6765c5d350ac602"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA414EDF51449",
|
||||
"hash": "da0465bd86021265089387465c4d4d7a794966fa1cf86920c79cb0e9b98665ba"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEA414EF281CA3",
|
||||
"hash": "db2871c97bfa39da80b145966c304f3e4051aa0e6f4f3c806312ac72aec0cf05"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEA414EF4C44E4",
|
||||
"hash": "98867bfaa25f8894124680b5dccf91fe5f7e06adaec8aa77f9287a5058498ae4"
|
||||
}
|
||||
},
|
||||
"0.3.10": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9F997FFD1858",
|
||||
"hash": "60a873474e2ff2f70a5ad524d1b51abb6fdf5991900001eb7c8979877d75dacd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9F997F77B599",
|
||||
"hash": "313882a8bfd76eb6930949ded36b23ce194ccb5431f474c62ae3fde12df100ae"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9F997FB515C3",
|
||||
"hash": "43b85e061bbcf6febb9973a7859d029f29f5ddeeb7722bd234422d8b6bee4406"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9F997DF1BB18",
|
||||
"hash": "50e585ce98988b70d79ec782b2cf6c787c2f0a97a448ba8594448b4a6a688943"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9F997DB040DC",
|
||||
"hash": "e885e023ddb765ba31a2859bd4b9683f9b40fee3195c189a749bc4b28535ab5c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9F997D9866DE",
|
||||
"hash": "4a6de3ff0fc2049ca72b8ab0ec567e195362a22c7efcca7ef0824b36b55d4193"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DE9F997F2903CC",
|
||||
"hash": "029ba9576b560753b0a4374ace6c5df6808e3e935ae0d4a67a5935debc12dbd4"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE9F997F6EE5E2",
|
||||
"hash": "bfe0c951b48cca6f91a85f83ec94a59cc567df988c0a7f23c0f34de0a232e08c"
|
||||
}
|
||||
"version": "0.3.9"
|
||||
},
|
||||
"0.3.9": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.34.1"
|
||||
},
|
||||
@@ -26,95 +26,15 @@
|
||||
"bin": "rclone-v${version}-windows-arm64/rclone.exe"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
||||
"latest": {
|
||||
"version": "1.74.1"
|
||||
"version": "1.73.4"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.74.1"
|
||||
},
|
||||
"1.74": {
|
||||
"version": "1.74.1"
|
||||
},
|
||||
"1.74.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAD1B458A41BC",
|
||||
"hash": "67df3059a6233b6e32e604bcd637654bb294ff86291b65ede77123e94818d911"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAD1C25E09770",
|
||||
"hash": "4f10d7845422d8568e187a0f6813f124bca9b657ac7becd8bdf8508fa968a336"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAD1C6237A9FA",
|
||||
"hash": "51326acc0d9cf60234aa5787d8da66a621430aa373542a6b35bad8a4a26ca43e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAD1B5EE81512",
|
||||
"hash": "c816ed0e568de4dd1bba1a4d0cd47523d3dd54337dd5fde73f1b068857ecf877"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAD1C2F373459",
|
||||
"hash": "98c04f5f678fe87d435d6f4b1fe204103c5906b151357e631ba0111410691213"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAD1C6A934E14",
|
||||
"hash": "317d2080debf0d941b12efb3a327d06e5cc1815c1dc4d79cb3665811b29ed12f"
|
||||
}
|
||||
},
|
||||
"1.74.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA79A9997861D",
|
||||
"hash": "61de0a78d8776fe3e080f8385ebe96d817f2ee6a6003fe36b2d9f3b49d3e36ea"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA79BD22CFC65",
|
||||
"hash": "e47ce2c488fe097119f219018e97f6806766540238f126dcdc510da9ffc0f0eb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA79C0D5C94E2",
|
||||
"hash": "ccebeae41401e60e6906a4c98bd0f0bd94038b7e6cc3dd01a487013c1a7e4951"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA79B022A4507",
|
||||
"hash": "c28148f72e82e16953a9f7eedbe610736968240318ff33872f90bfdd689cc72f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA79BDB84A9D0",
|
||||
"hash": "965b79b0bee24280a787e1f0f0a3e62347516e81cb6a40e5cc8ea4995b1ba917"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA79C15813A83",
|
||||
"hash": "9b0b1b407e2befbc9d4f0b0ea9ff95d5822e41e3f601085ccc1d5b62ad0c49d5"
|
||||
}
|
||||
"version": "1.73.4"
|
||||
},
|
||||
"1.73": {
|
||||
"version": "1.73.5"
|
||||
},
|
||||
"1.73.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9E0C3BBE3A4E",
|
||||
"hash": "932cf4b7484de74d82b4875488e0009469fd21f9904673385184520fe11a1bf0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9E0D0D15BEE0",
|
||||
"hash": "19c709563e455d8f8e343d5521e741afa7a77e37c6552ad8f7b03034f8bc214b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9E0D47EF790D",
|
||||
"hash": "201567c54304935112b06dfac4ad754786287fb5acfad8889feca8d1cdeba92b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9E0C537CFE99",
|
||||
"hash": "8d465c921d95b2f54c5f2e79b24c97742ebc2082a0b8709a686361bed5ba7932"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9E0D1603AE83",
|
||||
"hash": "b9e265eb7a098743d0726c05c73fe207d355950fb8481e0b226c0c00173da1e8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9E0D4F7F62B7",
|
||||
"hash": "8805406a984115e7cfe3b021a20a983b7060a70f198484cf373d687b6f625923"
|
||||
}
|
||||
"version": "1.73.4"
|
||||
},
|
||||
"1.73.4": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -20,33 +20,12 @@
|
||||
"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.158"
|
||||
"version": "0.3.157"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.158"
|
||||
},
|
||||
"0.3.158": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAE7E5EFA2F36",
|
||||
"hash": "a98a3e53396ee6ba094ab8e51f20b39a84d4e69ff6a23601940b6a4238438705"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAE7EFD27D0C6",
|
||||
"hash": "e8f022b37fd590ec9b97bf43e5d50e4b1325744062c612ae3a5a20b57171a991"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAE7E6E316BEA",
|
||||
"hash": "9358c419819665e89e82e3222d733b8d45cae7bcb2c3644e1ac4ca867dacb7d0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAE7E3CA78DB4",
|
||||
"hash": "6f56ddaf3c6c2d658348af4a08b3cfc7b732e1f6cc11d32ba08a35cde70155ca"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAE7F20E96A9A",
|
||||
"hash": "97975c50f21ec9afd87617dbfa893d09200775888b8a1c91686d1d033cc4d60a"
|
||||
}
|
||||
"version": "0.3.157"
|
||||
},
|
||||
"0.3.157": {
|
||||
"x86_64_linux_musl": {
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user