Compare commits

..

38 Commits

Author SHA1 Message Date
Taiki Endo 7566428207 Update manifest schema 2026-04-15 00:41:29 +00:00
Taiki Endo e24f9d2f1d Update manifest schema 2026-04-14 16:04:24 +00:00
Taiki Endo a32489a311 Update manifest schema 2026-04-14 13:31:10 +00:00
Taiki Endo 85f1221a01 Update manifest schema 2026-04-13 16:36:18 +00:00
Taiki Endo 378cd7099e Update manifest schema 2026-04-13 05:41:52 +00:00
Taiki Endo 58a23a132d Update manifest schema 2026-04-11 18:33:31 +00:00
Taiki Endo b0451605b9 Update manifest schema 2026-04-11 17:05:58 +00:00
Taiki Endo c2f7573e00 Update manifest schema 2026-04-10 17:38:28 +00:00
Taiki Endo ff1f1a27bd Update manifest schema 2026-04-10 07:36:33 +00:00
Taiki Endo 8682898895 Update manifest schema 2026-04-09 18:03:11 +00:00
Taiki Endo 6c29d3f326 Update manifest schema 2026-04-09 12:55:22 +00:00
Taiki Endo 1d8976e7a3 Update manifest schema 2026-04-08 11:41:27 +00:00
Taiki Endo ac8bd0b28d Update manifest schema 2026-04-07 15:36:27 +00:00
Taiki Endo 7df7a3a590 Update manifest schema 2026-04-07 12:54:02 +00:00
Taiki Endo 3a01877a3b Update manifest schema 2026-04-06 15:01:24 +00:00
Taiki Endo bf701eabf8 Update manifest schema 2026-04-05 07:55:17 +00:00
Taiki Endo 7441b14706 Update manifest schema 2026-04-04 13:54:43 +00:00
Taiki Endo 67ffa5404d Update manifest schema 2026-04-04 01:24:05 +00:00
Taiki Endo 44e8d07671 Update manifest schema 2026-04-02 12:27:48 +00:00
Taiki Endo 3196c59c70 Update manifest schema 2026-04-02 00:37:44 +00:00
Taiki Endo 18a2e880cb Update manifest schema 2026-04-01 15:42:05 +00:00
Taiki Endo a30e57accd Update manifest schema 2026-04-01 01:30:59 +00:00
Taiki Endo 7713cd7b4a Update manifest schema 2026-03-31 01:29:53 +00:00
Taiki Endo 79f9fd9df5 Update manifest schema 2026-03-30 01:34:27 +00:00
Taiki Endo e2ce78fa19 Update manifest schema 2026-03-29 08:35:03 +00:00
Taiki Endo 67b7c77839 Update manifest schema 2026-03-28 16:27:11 +00:00
Taiki Endo 89b11c24ae Update manifest schema 2026-03-28 05:54:18 +00:00
Taiki Endo 409d647a70 Update manifest schema 2026-03-27 14:43:32 +00:00
Taiki Endo b1527d67c0 Update manifest schema 2026-03-27 10:43:46 +09:00
Taiki Endo 212b435433 Update manifest schema 2026-03-27 02:21:31 +09:00
Taiki Endo 50ac0ac2da Update manifest schema 2026-03-26 00:58:13 +09:00
Taiki Endo fc6beaac8f Update manifest schema 2026-03-25 10:31:15 +09:00
Taiki Endo 012cbaff7f Update manifest schema 2026-03-24 20:57:53 +09:00
Taiki Endo 517ce9d464 Update manifest schema 2026-03-23 23:20:22 +09:00
Taiki Endo 732e3fa394 Update manifest schema 2026-03-22 02:50:35 +09:00
Taiki Endo 9be19a83e8 Update manifest schema 2026-03-21 12:38:44 +09:00
Taiki Endo b94661c19b Update manifest schema 2026-03-21 06:24:02 +09:00
Taiki Endo 2f117b7ec1 Initial commit 2026-03-21 06:24:02 +09:00
243 changed files with 2327 additions and 28750 deletions
-13
View File
@@ -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 = [
]
-52
View File
@@ -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
View File
@@ -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 = [
]
-24
View File
@@ -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
-2
View File
@@ -1,2 +0,0 @@
# Change indent size of shell script files to match scripts in CI config
946918579413996845b77e146aa8eb3c6f40f7ab
-4
View File
@@ -1,4 +0,0 @@
* text=auto eol=lf
tools/tidy.sh linguist-detectable=false
.github/.cspell/rust-dependencies.txt linguist-generated
manifests/** linguist-generated
-48
View File
@@ -1,48 +0,0 @@
almalinux
archlinux
binstall
callgrind
CDPATH
convco
coreutils
covgate
cyclonedx
cygdrive
deadlinks
deepsource
docgarden
doas
enablerepo
epel
espup
fastestmirror
grcov
gungraun
insta
knope
LASTEXITCODE
leptos
libicu
linkcheck
mdbook
microdnf
minisig
mirrorlist
nextest
pluginconf
ppcle
prek
quickinstall
rdme
sccache
SHASUMS
sigstore
syft
tombi
udeps
USERPROFILE
wasmtime
watchexec
xbuild
xscale
xwin
-6
View File
@@ -1,6 +0,0 @@
# This file is @generated by tidy.sh.
# It is not intended for manual editing.
flate
minisign
ureq
-1
View File
@@ -1 +0,0 @@
blank_issues_enabled: true
-46
View File
@@ -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 youre 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.
-23
View File
@@ -1,23 +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: []
-327
View File
@@ -1,327 +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:
tidy:
uses: taiki-e/github-actions/.github/workflows/tidy.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
permissions:
security-events: write # for github/codeql-action/*
test-manifest-schema:
needs: tidy
uses: taiki-e/github-actions/.github/workflows/rust-test.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
with:
test-args: --exclude install-action-internal-codegen
no-std: false
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 # TODO: zypper timeout
- 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'
-33
View File
@@ -1,33 +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@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
permissions:
contents: write # for creating branch for pr
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
install-cosign: true
install-parse-changelog: true
-58
View File
@@ -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@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # 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@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # 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: '
-6
View File
@@ -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 } }
-8
View File
@@ -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
-11
View File
@@ -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
View File
@@ -1 +0,0 @@
manifests/*.json
-34
View File
@@ -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
-38
View File
@@ -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
-9
View File
@@ -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 = " "
-8033
View File
File diff suppressed because it is too large Load Diff
-53
View File
@@ -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 }
-64
View File
@@ -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 owners [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
View File
@@ -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
View File
@@ -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.
-204
View File
@@ -1,204 +0,0 @@
<!-- omit in toc -->
# install-action
[![release](https://img.shields.io/github/release/taiki-e/install-action?style=flat-square&logo=github)](https://github.com/taiki-e/install-action/releases/latest)
[![github actions](https://img.shields.io/github/actions/workflow/status/taiki-e/install-action/ci.yml?branch=main&style=flat-square&logo=github)](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.)
- [homebrew-tap]: Homebrew tap for projects under github.com/taiki-e.
- [scoop-bucket]: Scoop bucket for projects under github.com/taiki-e.
[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
[homebrew-tap]: https://github.com/taiki-e/homebrew-tap
[scoop-bucket]: https://github.com/taiki-e/scoop-bucket
[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.
-115
View File
@@ -1,115 +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-crap**](https://github.com/minikin/cargo-crap) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/minikin/cargo-crap/releases) | Linux, macOS, Windows | [MIT](https://github.com/minikin/cargo-crap/blob/main/LICENSE) | |
| [**cargo-cyclonedx**](https://github.com/CycloneDX/cyclonedx-rust-cargo) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-rust-cargo/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE) | |
| [**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-leptos**](https://github.com/leptos-rs/cargo-leptos) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/leptos-rs/cargo-leptos/releases) | Linux, macOS, Windows | [MIT](https://github.com/leptos-rs/cargo-leptos/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-vet**](https://github.com/mozilla/cargo-vet) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/mozilla/cargo-vet/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/mozilla/cargo-vet/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/mozilla/cargo-vet/blob/main/LICENSE-MIT) | |
| [**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) | |
| [**convco**](https://github.com/convco/convco) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/convco/convco/releases) | Linux, macOS, Windows | [MIT](https://github.com/convco/convco/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) | |
| [**docgarden**](https://github.com/jesse-black/docgarden) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/jesse-black/docgarden/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/jesse-black/docgarden/blob/main/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) | |
| [**kingfisher**](https://github.com/mongodb/kingfisher) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/mongodb/kingfisher/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/mongodb/kingfisher/blob/main/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
View File
@@ -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: false
default: cargo-lambda
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
# - For context containing path, 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"
},
+4 -196
View File
@@ -1,207 +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.5.0"
"version": "2.4.11"
},
"2": {
"version": "2.5.0"
},
"2.5": {
"version": "2.5.0"
},
"2.5.0": {
"x86_64_linux_musl": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.0/biome-linux-x64-musl",
"etag": "0x8DEC87B800149E8",
"hash": "16620d56fd50c5b3dc689a80611a2b58dd22a55918894b2520b534da877d2e66",
"bin": "biome"
},
"x86_64_macos": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.0/biome-darwin-x64",
"etag": "0x8DEC87B8078CB02",
"hash": "0c7002cc808eebabe7852c8417b9deb1a5615342e6881c588b49367c6c56db8c",
"bin": "biome"
},
"x86_64_windows": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.0/biome-win32-x64.exe",
"etag": "0x8DEC87B80F53719",
"hash": "84d4e71fdbb4b15b1aa83c1b1cc033aae9856d48a7a857c1381b1bd499430f7c",
"bin": "biome.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.0/biome-linux-arm64-musl",
"etag": "0x8DEC87B80A8F39B",
"hash": "fb6b47765cdc5bf4e5af9fdf18c17aa1306c8eb7f227a36d6580d67472a77dbb",
"bin": "biome"
},
"aarch64_macos": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.0/biome-darwin-arm64",
"etag": "0x8DEC87B80A09891",
"hash": "9b9e04f749db6b037b0ad38ba0c5cce63b185a7cc3b049e577dad3c18f4adb2c",
"bin": "biome"
},
"aarch64_windows": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.0/biome-win32-arm64.exe",
"etag": "0x8DEC87B805D5E9B",
"hash": "d561b19067059dfffb1244f00313958f6fcd41c0eaa9542d7787e362118a915d",
"bin": "biome.exe"
}
"version": "2.4.11"
},
"2.4": {
"version": "2.4.16"
},
"2.4.16": {
"x86_64_linux_musl": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-linux-x64-musl",
"etag": "0x8DEBBF5E5A32262",
"hash": "e7102113e10c57772ce969ce088f54ec2cc37331bb4601e5f5369fd94a6fe1d9",
"bin": "biome"
},
"x86_64_macos": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-darwin-x64",
"etag": "0x8DEBBF5E52310BC",
"hash": "42329e159a2f35b3776a01e7a16a53582d53e126fbc55bfdd5825e873a87b338",
"bin": "biome"
},
"x86_64_windows": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-win32-x64.exe",
"etag": "0x8DEBBF5E5B6BB6E",
"hash": "1247239dae8f57aafeaeb9914e30b92efcc51c632eee3be4463a95969558f6a3",
"bin": "biome.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-linux-arm64-musl",
"etag": "0x8DEBBF5E56DA88F",
"hash": "f288ac4e33d35ef08ee333419525df8cf9e74a617447d651a3fad052a9612731",
"bin": "biome"
},
"aarch64_macos": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-darwin-arm64",
"etag": "0x8DEBBF5E4F81273",
"hash": "8cf9e92a161e26bdbfc0896c208864e1de8b160dfb90f61040609c2743cf433b",
"bin": "biome"
},
"aarch64_windows": {
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-win32-arm64.exe",
"etag": "0x8DEBBF5E55D1958",
"hash": "fd0c02ad8b5bbbdd634b22d154b1076ba27624025b6ad1dd62838a179523e919",
"bin": "biome.exe"
}
},
"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,33 +22,12 @@
"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.2"
"version": "0.22.1"
},
"0.22": {
"version": "0.22.2"
},
"0.22.2": {
"x86_64_linux_musl": {
"etag": "0x8DEC2FF6CD12EBE",
"hash": "7fb9497f8594b389e5fce5ef9b92db08432996895b2e0c5a0167a69ed445c428"
},
"x86_64_macos": {
"etag": "0x8DEC2FF8305B529",
"hash": "847831323de932155b226ab60ee4a180e13e5d007a019f0d4b7b4d89a6de2ab2"
},
"x86_64_windows": {
"etag": "0x8DEC2FFE46E97F6",
"hash": "0a7316540862c13d954f648917ceacca593747baed6eec180fafa590be2710ab"
},
"aarch64_linux_gnu": {
"etag": "0x8DEC2FF73018B9D",
"hash": "c6603814ddaa45e51263dafd31c0ac98808f688d26f7395804f9670b0fd599dd"
},
"aarch64_macos": {
"etag": "0x8DEC2FF4990E308",
"hash": "ec7ca4263769593df4d909be85b94a6b79efa2897be5d2bb8ebd516e823175af"
}
"version": "0.22.1"
},
"0.22.1": {
"x86_64_linux_musl": {
@@ -26,38 +26,13 @@
"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"
},
"0.7": {
"version": "0.7.4"
},
"0.7.5": {
"x86_64_linux_musl": {
"etag": "0x8DEB7915EBC71B6",
"hash": "3374daaf153e6f82028add5e4bf7cc2deab46537dee24f20be80df831193aeb4"
},
"x86_64_macos": {
"etag": "0x8DEB7915E917365",
"hash": "24e98dfcf1f52e05e7ac4dca4b874bf5ac0e66be3000b3929b467983792f32b2"
},
"x86_64_windows": {
"etag": "0x8DEB7915E78FDE9",
"hash": "83a7d5955c7ac96ede5d896ac9ede5f7ecce9ece0e95d9e47acd766b09e2ef1b"
},
"aarch64_linux_gnu": {
"etag": "0x8DEB7915E05D61E",
"hash": "6d364879b516fa914f98504e551faddedf35b71543b4331a6d26e4e217778cfa"
},
"aarch64_macos": {
"etag": "0x8DEB7915E053A8F",
"hash": "92720fff2be27492ca7b216510a27e88a835b526e9e94e46bc36b502ba17d8f0"
},
"aarch64_windows": {
"etag": "0x8DEB7915E064AC8",
"hash": "621454ff8c7aba883c51b349bb418c7bc940733894e2bcc1df928899b7064180"
}
},
"0.7.4": {
"x86_64_linux_musl": {
"etag": "0x8DE7A2374CF1CFA",
@@ -18,42 +18,36 @@
},
"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.20.0"
"version": "1.18.1"
},
"1.20.0": {
"1.18.1": {
"x86_64_linux_musl": {
"etag": "0x8DEC55C18256631",
"hash": "4d7875788d0505547c220d2b02d3619aac0dd19b7033eba7005a8d09ff1dc433"
"etag": "0x8DE9959D5E8FE78",
"hash": "cf2a4b54494ea8555d6349685e9a301efc1051d9fba6308c76914b2486f8700f"
},
"x86_64_macos": {
"etag": "0x8DEC55C1EE18960",
"hash": "2ef14fc607859ba238bce73512eba68941e3addc61cb40282171287fbdee5ff4"
"etag": "0x8DE9959DBCBBA2C",
"hash": "e06370bec7143668653bb7c09d0b8b689fc703dd4fa58ec5847c4b571d8a490d"
},
"x86_64_windows": {
"etag": "0x8DEC55C1C9243D0",
"hash": "185c115ef1977e044e009336c77bf41cc61f144944fdb43e2d84f291b96648dc"
"etag": "0x8DE9959D9E5BCF3",
"hash": "89706aa5215c164d8d091597a470fee72308ac87e8553af395ea77db844a888c"
},
"aarch64_linux_musl": {
"etag": "0x8DEC55C2A85BF01",
"hash": "3e85b6bbdf971806562ea4070bb4bdae8591fb7bcc2e0f4ea693f40c4ab92159"
"etag": "0x8DE9959E60E685D",
"hash": "c55962a0115f9716b709216de7f8bdd59d6ba8738779e60b051b4593f677717a"
},
"aarch64_macos": {
"etag": "0x8DEC55C32B09DFE",
"hash": "24a9cbf1e4c238881f408d7cca11f4aafba1fdeb0e518887638af5dd40e6ac3d"
"etag": "0x8DE9959ED2C11A4",
"hash": "955abf167994c90f3547e233edace4c0f794465dd4aa408249b38999aa5ca3cf"
},
"aarch64_windows": {
"etag": "0x8DEC55C2FE6BF10",
"hash": "4ee45f449f871adfec4eea5ed0643ad4830a9b5aa684a22796f65492f14b997e"
},
"riscv64_linux_musl": {
"etag": "0x8DEC55C23BC1684",
"hash": "0cb6acf4e4b2687e5a767df685d4eec069b4bd405dfb7d0a29aa1c1319f2887a"
"etag": "0x8DE9959EAAC5732",
"hash": "c6873e81457d9e44973a8e9a849795f2c83765fce0af8ad68b597b5b40dec418"
}
}
}
@@ -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"
},
+4 -18
View File
@@ -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": {
+3 -134
View File
@@ -22,143 +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.9"
"version": "0.19.1"
},
"0.19": {
"version": "0.19.9"
},
"0.19.9": {
"x86_64_linux_musl": {
"etag": "0x8DECAEAB15FAACB",
"hash": "f1f8eedc2a3ac297c540873f93785d4104b102c0079506b2a6b3221b7ec956af"
},
"x86_64_macos": {
"etag": "0x8DECAEAC37C357D",
"hash": "3336724665a3aef124a9e4c79cb59968df36d21bfcda5ae596abe2a7874b1938"
},
"x86_64_windows": {
"etag": "0x8DECAEAEA7F8757",
"hash": "a0f2b3da55444f1a354fcbd20ce4b94981ab8193c1b674362d4761905f31ffd0"
},
"aarch64_linux_musl": {
"etag": "0x8DECAEAAC2F6399",
"hash": "32580dcc2bc13fbeeb7c50edc38ef99c3b9ce9569a1d07a96e11b3b941f3e72e"
},
"aarch64_macos": {
"etag": "0x8DECAEAA0B31E97",
"hash": "be6fd555e910ac360e25cbef4f16ead47d87d2545fa07aa27223ef0f9af1a02c"
}
},
"0.19.8": {
"x86_64_linux_musl": {
"etag": "0x8DEBC9143658A6A",
"hash": "70e769ae3872e34d45132b17040859175e11401dc12dddb0303e0b8c7d088f3f"
},
"x86_64_macos": {
"etag": "0x8DEBC9158C150A8",
"hash": "dcd997dd8b7039015cd6f72d4feff64a21f5a6ec905e463751df80e70d82886c"
},
"x86_64_windows": {
"etag": "0x8DEBC9184A543FA",
"hash": "7db40a864ea299304e3a6c1d9f647fa8f554bb0353e181f63955b21c0dc57cd0"
},
"aarch64_linux_musl": {
"etag": "0x8DEBC914C73B2AC",
"hash": "67ef48056523d27f58a527c5e49172bc24758f7b8147998d47219d45b181c354"
},
"aarch64_macos": {
"etag": "0x8DEBC9138285055",
"hash": "24bbdbe694f9b0cc00b721d94cbd5a8f967eb9a4d2ee99351aa246a69b33ae4f"
}
},
"0.19.7": {
"x86_64_linux_musl": {
"etag": "0x8DEB7D6F3B4B3A3",
"hash": "c59ad86eb8b545c4b7b9833c074094fce4a99886f741e4286adec15870c0a726"
},
"x86_64_macos": {
"etag": "0x8DEB7D6E5568CAC",
"hash": "9b9da6e8168cb26d719c0bd4adab57c73fa6741dc5be38dde615e4c2b347d248"
},
"x86_64_windows": {
"etag": "0x8DEB7D743C7F9BC",
"hash": "1540d9e8d98229733a43ae041ec3b71bd700d7e139183118095284b3fe62ca8b"
},
"aarch64_linux_musl": {
"etag": "0x8DEB7D6FB79A5C1",
"hash": "9f3a651814e5db861088e610571e4a0bbc8c5da89f07c5267a1cbd8381087095"
},
"aarch64_macos": {
"etag": "0x8DEB7D6F37422A9",
"hash": "04d193272b5369f967b9d5202688c2dcd3e6b07da90948c96b6c49e63433d3df"
}
},
"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"
},
+3 -49
View File
@@ -1,58 +1,12 @@
{
"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.45"
"version": "0.6.44"
},
"0.6": {
"version": "0.6.45"
},
"0.6.45": {
"x86_64_linux_musl": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
"etag": "0x8DEBE5B028FAB24",
"hash": "b242dffcfd43317ac484dd2dbc3b9fc5f8a7eb3ba252af31b531503f0bad33d1"
},
"x86_64_macos": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-x86_64-apple-darwin.tar.gz",
"etag": "0x8DEBE5AF9D9A347",
"hash": "b1a65c2daaca37957a288a295cb25f5c3bf3f7945ec60b450ecdbb1159acbff4"
},
"x86_64_windows": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
"etag": "0x8DEBE5B1C697240",
"hash": "9f796e7720686866f30bb51522efb2a2f875cb76cac41da61e3446b41f5fec9a"
},
"aarch64_linux_musl": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
"etag": "0x8DEBE5B00B2A3F0",
"hash": "9ac71756f1da6e8798ac5afbfd222abecb95de9c10e672ed52c179b637d6444b"
},
"aarch64_macos": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-aarch64-apple-darwin.tar.gz",
"etag": "0x8DEBE5AFF115117",
"hash": "af0ab90e56aa716ae9f545a93e4338d4f36525e187d367b6519da71b60249b50"
},
"aarch64_windows": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
"etag": "0x8DEBE5B1940EDDC",
"hash": "532dd7ff12be5d6b63db5ba0ce39ba30f9233eba759685f7608cc442e59d71e5"
},
"powerpc64le_linux_musl": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-powerpc64le-unknown-linux-musl.tar.gz",
"etag": "0x8DEBE5B006CC1DD",
"hash": "541ca9c5c0cba0460d83139498b1f3bb64fa7e5b6c6d18b044e6871546a18b3a"
},
"riscv64_linux_musl": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-riscv64gc-unknown-linux-musl.tar.gz",
"etag": "0x8DEBE5AFE0D3AE4",
"hash": "545e56417ede574857ff28ecb60d5b82563cd90bd3e8511dbb2e3a51b34b6d6e"
},
"s390x_linux_gnu": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.45/cargo-hack-s390x-unknown-linux-gnu.tar.gz",
"etag": "0x8DEBE5B0443ADA7",
"hash": "45d498b65de607c6c1921cb12b982143d2781e6ea14211fdd75725a397a04539"
}
"version": "0.6.44"
},
"0.6.44": {
"x86_64_linux_musl": {
@@ -18,32 +18,12 @@
"bin": "cargo-insta-aarch64-apple-darwin/cargo-insta"
}
},
"license_markdown": "[Apache-2.0](https://github.com/mitsuhiko/insta/blob/master/LICENSE)",
"latest": {
"version": "1.48.0"
"version": "1.47.2"
},
"1": {
"version": "1.48.0"
},
"1.48": {
"version": "1.48.0"
},
"1.48.0": {
"x86_64_linux_musl": {
"etag": "0x8DEC7C41085EDCE",
"hash": "703aa7d151ae59cac0bf8e7c2c27da4aca8070f3cb178f624ae10621ef77f5f5"
},
"x86_64_macos": {
"etag": "0x8DEC7C410025E02",
"hash": "e2d6d6fa4bcb30f7d4834f6254a6da7f2982a9e9a3882695aca5e83d64231267"
},
"x86_64_windows": {
"etag": "0x8DEC7C41053A4D0",
"hash": "7e23929588aaf5daff1e93bfc4addca7ccf55195444e84552b6588c9d864642e"
},
"aarch64_macos": {
"etag": "0x8DEC7C40FF4FF9A",
"hash": "26f081f5bf62d1dc03aae9c4137188d66a2debe6bcaf2884f2153fcb6eda27cb"
}
"version": "1.47.2"
},
"1.47": {
"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"
},
+2 -26
View File
@@ -22,33 +22,9 @@
"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.4.0"
},
"0.4": {
"version": "0.4.0"
},
"0.4.0": {
"x86_64_linux_musl": {
"etag": "0x8DEC093F0706080",
"hash": "d8af0ceebd1030aba4448bd422b5f51a840ffa339ccc395dae5ae161c4913ade"
},
"x86_64_macos": {
"etag": "0x8DEC093D7EED1D1",
"hash": "8c3ae605d94825b29556bb7430bdd2920be486d2f3145cf4c65d3c20b79a45bc"
},
"x86_64_windows": {
"etag": "0x8DEC0943FA29945",
"hash": "f8d84eaa1f8729d7fb8a7c8b5ff5bb1bc6c041b847027b89095943f7b5372b88"
},
"aarch64_linux_musl": {
"etag": "0x8DEC093EFF41B2C",
"hash": "29dd1de53be532aefb04084220b7fe7f9b874791626e3b54d5007e5a64b3e431"
},
"aarch64_macos": {
"etag": "0x8DEC093D86B8BE9",
"hash": "fde37b1341fb718be75495b6daac43ad0a1a24c56e8ee0826ea50f7d861cf835"
}
"version": "0.3.2"
},
"0.3": {
"version": "0.3.2"
@@ -26,151 +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.137"
"version": "0.9.132"
},
"0.9": {
"version": "0.9.137"
},
"0.9.137": {
"previous_stable_version": "0.9.136",
"x86_64_linux_gnu": {
"etag": "0x8DEBB6A74590433",
"hash": "38fd6275e111b200bbbed1bd2ae91cbb0d7edd28504879875cff2b3d96f3f311"
},
"x86_64_linux_musl": {
"etag": "0x8DEBB6AC178847F",
"hash": "d5a7d2e76a19b65006939e296eb19d776f820cfaa19514c01cf70a5185a885b8"
},
"x86_64_macos": {
"etag": "0x8DEBB6AF4518457",
"hash": "94e89c20b233c29c042683e885131d76abf95e795c355a4fe7d64d4b128b90be"
},
"x86_64_windows": {
"etag": "0x8DEBB6B1E0B53E4",
"hash": "f32114ae7c9a1718fc95a6e18afb720c3aadc8510d1e838c2a2b60978c8ba464"
},
"aarch64_linux_gnu": {
"etag": "0x8DEBB6A9C891E9D",
"hash": "8f878903d63a69dd0a8fba65d0dc871043423bd0591076f688023b862d58d1a6"
},
"aarch64_linux_musl": {
"etag": "0x8DEBB6A7790E2DF",
"hash": "cc8a61beed918e1e76f047243f8bb9fc90bad0e6b74b91b2f58b7397f912495a"
},
"aarch64_windows": {
"etag": "0x8DEBB6B7EBCCCDC",
"hash": "27f1c452ee96ba852ba94569dc63ba720c1f209e0150967d3503ec7ced17f431"
},
"riscv64_linux_gnu": {
"etag": "0x8DEBB6A923FDF58",
"hash": "b1c235ea81560d0f0dee36053369ba6c8eda303183ff8603a9776fd28b946495"
}
},
"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,49 +29,12 @@
"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.24"
"version": "0.2.23"
},
"0.2": {
"version": "0.2.24"
},
"0.2.24": {
"x86_64_linux_musl": {
"etag": "0x8DEBE5B12FCB6C7",
"hash": "2b149df2f2a4aec27122c0a5de7640378085c7d6cddc9fee46da28fb15a3b261"
},
"x86_64_macos": {
"etag": "0x8DEBE5B0E14CB08",
"hash": "bf020f98b8bade3295d00e1e2fd2e95f6e9ef83644de7610c8aa49952bbc0fdb"
},
"x86_64_windows": {
"etag": "0x8DEBE5B2194BB05",
"hash": "140b0cadf11b9587ab3931cf89ff70d2886f5eb7fd4d8c3481f3303259284f80"
},
"aarch64_linux_musl": {
"etag": "0x8DEBE5B0ED56D68",
"hash": "61fe1afc1618173530bbe0b2a6f6221ae975a6102dc4d26803e375696e7abcb9"
},
"aarch64_macos": {
"etag": "0x8DEBE5B11001629",
"hash": "283c0fbe4c9aa0709d2883e83773d077586ee68dc5e57dbf56d0b91b2c0ab8c0"
},
"aarch64_windows": {
"etag": "0x8DEBE5B1EB0931F",
"hash": "f94da20926c785def084f7ca24995ec5f123df27efad58d9fca8d67ca607a687"
},
"powerpc64le_linux_musl": {
"etag": "0x8DEBE5B11347FB2",
"hash": "ed29ad36b2f9bc78494e1c5b7e6953fcf03daf6339870e247c7b00f7643a9145"
},
"riscv64_linux_musl": {
"etag": "0x8DEBE5B15772187",
"hash": "8c3f43e4af3f317d6d7a0a9ef9b2f77c22cb23298720379273a545a85497ac76"
},
"s390x_linux_gnu": {
"etag": "0x8DEBE5B121CEFA1",
"hash": "cffb9e9248ac7f6efa3f55b2e872b5dbf1f08fe6f7211c1b17c241e22aff1925"
}
"version": "0.2.23"
},
"0.2.23": {
"x86_64_linux_musl": {
+1 -12
View File
@@ -1,24 +1,13 @@
{
"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"
},
"1": {
"version": "1.4.2"
},
"1.5.1": {
"x86_64_linux_musl": {
"url": "https://github.com/orium/cargo-rdme/releases/download/v1.5.1/cargo-rdme_v1.5.1_x86_64-unknown-linux-musl.tar.bz2",
"etag": "0x8DEC7E5D912D365",
"hash": "15da3e25abf051baa5305ac68874401f1adc2cac9944b54035cef63fc85ed40b"
},
"x86_64_windows": {
"url": "https://github.com/orium/cargo-rdme/releases/download/v1.5.1/cargo-rdme_v1.5.1_x86_64-pc-windows-gnu.zip",
"etag": "0x8DEC7E5E4385ECF",
"hash": "4350f7f7f4f23df202736100b07bbb30a23317f393d0bb81389d140b2d556a77"
}
},
"1.5.0": {
"x86_64_linux_musl": {
"url": "https://github.com/orium/cargo-rdme/releases/download/v1.5.0/cargo-rdme_v1.5.0_x86_64-unknown-linux-musl.tar.bz2",
@@ -17,33 +17,9 @@
"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.48.0"
},
"0.48": {
"version": "0.48.0"
},
"0.48.0": {
"x86_64_linux_musl": {
"etag": "0x8DEBF214B367463",
"hash": "b95e7fdaad0d49a3c8e5986332f29fa03d001663e16ff428d9906fad00c4c11d"
},
"x86_64_macos": {
"etag": "0x8DEBF210CAD8D89",
"hash": "3ceb449af52955e96f96d2fafb528baa8b64f822e694a9a3bbf878665983696f"
},
"x86_64_windows": {
"etag": "0x8DEBF21D3C9FDF7",
"hash": "c91332f2e2ee18828d8044784ca3a255d23882e6a13e33ea744f3e388341691f"
},
"aarch64_linux_musl": {
"etag": "0x8DEBF21329C24EA",
"hash": "198a3a003e75c15cd143ad9e98f148f09e963d4a63649d690c6b4c0917400dfd"
},
"aarch64_macos": {
"etag": "0x8DEBF21106D628F",
"hash": "4ec2693d8d26126bde3d61dd99d4fb8b19a7e3908dea0283d5d4b58450a7dc80"
}
"version": "0.47.0"
},
"0.47": {
"version": "0.47.0"
@@ -26,95 +26,12 @@
"bin": "cargo-shear.exe"
}
},
"license_markdown": "[MIT](https://github.com/Boshen/cargo-shear/blob/main/LICENSE)",
"latest": {
"version": "1.13.1"
"version": "1.11.2"
},
"1": {
"version": "1.13.1"
},
"1.13": {
"version": "1.13.1"
},
"1.13.1": {
"x86_64_linux_musl": {
"etag": "0x8DEC3E7FACA5FBE",
"hash": "6e9b6f8428617bfc69145c682d4cf9f24774aba0e95355e061cb0fbc1f8d5da4"
},
"x86_64_macos": {
"etag": "0x8DEC3E7FA7FC7EC",
"hash": "b8736e7140f4574b69364dab8ac1e1154be4291bc900143466c78c47b2475ac3"
},
"x86_64_windows": {
"etag": "0x8DEC3E7FA8822FB",
"hash": "243e603ad6f9f2e09fbd0ec775e5c58554c3254c50c4494c640dc368f16f8cf9"
},
"aarch64_linux_musl": {
"etag": "0x8DEC3E7FA6BBA37",
"hash": "f932e91c545acc545ae07bd03fb36507dc09b2963601b3d50fb4a2c3a9ff02c4"
},
"aarch64_macos": {
"etag": "0x8DEC3E7FA531DC8",
"hash": "cc660223eca03cfca21f5bc5305692379f4fae70b88e414a0f75fbbc9dfbdb06"
},
"aarch64_windows": {
"etag": "0x8DEC3E7FA3B43BB",
"hash": "90eed0949e48a693f0cd2f439df2fcff618c134db6faaccc8d5b875928a7c87e"
}
},
"1.13.0": {
"x86_64_linux_musl": {
"etag": "0x8DEC20402976F5D",
"hash": "fa6aee84cc6ad6b42e204990ea0c4f271f2a0a1bf7ef5c150d09783d4c3ffc19"
},
"x86_64_macos": {
"etag": "0x8DEC204023CE3F4",
"hash": "df5812c1072e4ca0bf1fbc5b4214742685267abca1a71c50182de7370e79802a"
},
"x86_64_windows": {
"etag": "0x8DEC204023D31C3",
"hash": "6954d1c7ea50c9266a371878772e5fd9f86db1dca2af52c4876f79fc5ee6905f"
},
"aarch64_linux_musl": {
"etag": "0x8DEC20401EC8656",
"hash": "b1c2711af98e9ea52d0e553e58c7fa1144191236db683ef3ad7b07c135a96a38"
},
"aarch64_macos": {
"etag": "0x8DEC20401F004C5",
"hash": "cde15fbfcf030cdd87c89200d17de772f05223949fdbef930b51f7ca1703dddf"
},
"aarch64_windows": {
"etag": "0x8DEC20401FBDE59",
"hash": "39ffd3832a09b33ab7461e4bb60b760fa1f4391b8b32adf65009e51fa361ccce"
}
},
"1.12": {
"version": "1.12.4"
},
"1.12.4": {
"x86_64_linux_musl": {
"etag": "0x8DEB42A0B0B4427",
"hash": "a19e0db3df16a0b2af6b06c23486d9bfcabc614c481b1f7c9f4b650a5a3dddbd"
},
"x86_64_macos": {
"etag": "0x8DEB42A0AB5BC42",
"hash": "fbd6b4df89caa3e35e808721ffa351cc4897cbae91e9209914c8d72d56a38584"
},
"x86_64_windows": {
"etag": "0x8DEB42A0AD3F7AE",
"hash": "1e0f652e2dad75e8dc7278dcb3b231f3b0ff3046f3715a3f495187cd2bbe8754"
},
"aarch64_linux_musl": {
"etag": "0x8DEB42A0A839A16",
"hash": "119c1226b2da6679b05e136be3ac990e894d00642564f1b5d54f4b18cd1cba2c"
},
"aarch64_macos": {
"etag": "0x8DEB42A0A80B725",
"hash": "bf2b10520c9715d9c84f19cb4e68d946bbcb60b9698aff68837c60dd388f8dd9"
},
"aarch64_windows": {
"etag": "0x8DEB42A0A75524D",
"hash": "0f3498b14bc98bf9a698efa28ade52e5d9a41dd92f2b303694ae3237b556fe91"
}
"version": "1.11.2"
},
"1.11": {
"version": "1.11.2"
+4 -17
View File
@@ -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": {
+84
View File
@@ -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"
},
+2 -43
View File
@@ -14,50 +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.23.0"
},
"0.23": {
"version": "0.23.0"
},
"0.23.0": {
"x86_64_linux_musl": {
"etag": "0x8DECBBAC4104DDA",
"hash": "74a216f64f10ea81c909f02d6b1a84cd0fda8de4c87ee52fe63ba76ab2392b75"
},
"x86_64_macos": {
"etag": "0x8DECBB9E635A734",
"hash": "d78a88f43247a6298d8888dc4c44a8af92801fdf4e5374cc5a359a1e53770993"
},
"x86_64_windows": {
"etag": "0x8DECBB90FE7390F",
"hash": "af084297230d9d4d6b933471d544289c09ab40906ca8acf6ca2a5a643117fff3"
},
"aarch64_linux_musl": {
"etag": "0x8DECBBAE6692AB5",
"hash": "6f6e76a680db31556f00f50a6e5741e1cce8704ead943b05b92f78a5c1c2674b"
}
},
"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"
+410
View File
@@ -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 -44
View File
@@ -1,53 +1,10 @@
{
"rust_crate": "coreutils",
"template": null,
"license_markdown": "[MIT](https://github.com/uutils/coreutils/blob/main/LICENSE)",
"latest": {
"version": "0.6.0"
},
"0.9.0": {
"x86_64_linux_musl": {
"url": "https://github.com/uutils/coreutils/releases/download/0.9.0/coreutils-0.9.0-x86_64-unknown-linux-musl.tar.gz",
"etag": "0x8DEBE2DC4E2E75D",
"hash": "7fffbe9c835054f1143a5f2a68ef478efb427417163e0410c26c901da15647e5",
"bin": "coreutils-0.9.0-x86_64-unknown-linux-musl/coreutils"
},
"x86_64_macos": {
"url": "https://github.com/uutils/coreutils/releases/download/0.9.0/coreutils-0.9.0-x86_64-apple-darwin.tar.gz",
"etag": "0x8DEBE2F170D891D",
"hash": "5ec809519e981b32f4730a6aaccf06f18ce7f36f53fc3bc2342cc1f5777c02af",
"bin": "coreutils-0.9.0-x86_64-apple-darwin/coreutils"
},
"x86_64_windows": {
"url": "https://github.com/uutils/coreutils/releases/download/0.9.0/coreutils-0.9.0-x86_64-pc-windows-msvc.zip",
"etag": "0x8DEBE2F1F4C04BB",
"hash": "77b4cad20258b654a75c4cde7f4f7033ea896a71a700f68072ee44599c1d76d4",
"bin": "coreutils-0.9.0-x86_64-pc-windows-msvc/coreutils.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/uutils/coreutils/releases/download/0.9.0/coreutils-0.9.0-aarch64-unknown-linux-musl.tar.gz",
"etag": "0x8DEBE2D4432F0E3",
"hash": "c30d2fff663fa707f2682fc49e6fd4521b05f118eeb3852b92dd54fd9daf6baf",
"bin": "coreutils-0.9.0-aarch64-unknown-linux-musl/coreutils"
},
"aarch64_macos": {
"url": "https://github.com/uutils/coreutils/releases/download/0.9.0/coreutils-0.9.0-aarch64-apple-darwin.tar.gz",
"etag": "0x8DEBE2E84C6392F",
"hash": "ed6918fa7dd51136339b963e41879ebffbf4da9335e501936adfce9048c2f2f7",
"bin": "coreutils-0.9.0-aarch64-apple-darwin/coreutils"
},
"aarch64_windows": {
"url": "https://github.com/uutils/coreutils/releases/download/0.9.0/coreutils-0.9.0-aarch64-pc-windows-msvc.zip",
"etag": "0x8DEBE2D85452DAF",
"hash": "c792e3949a6a3d91f944b765aab6f0b62cf213e886b347dbb81c66d7e0499d04",
"bin": "coreutils-0.9.0-aarch64-pc-windows-msvc/coreutils.exe"
},
"riscv64_linux_musl": {
"url": "https://github.com/uutils/coreutils/releases/download/0.9.0/coreutils-0.9.0-riscv64gc-unknown-linux-musl.tar.gz",
"etag": "0x8DEBE2D72C0A6A0",
"hash": "dc88da485c95c71957cc0add897e5053cdea0ad95879787acef22362d6625d72",
"bin": "coreutils-0.9.0-riscv64gc-unknown-linux-musl/coreutils"
}
},
"0.8.0": {
"x86_64_linux_musl": {
"url": "https://github.com/uutils/coreutils/releases/download/0.8.0/coreutils-0.8.0-x86_64-unknown-linux-musl.tar.gz",
+3 -39
View File
@@ -26,48 +26,12 @@
"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.1.1"
"version": "3.0.6"
},
"3": {
"version": "3.1.1"
},
"3.1": {
"version": "3.1.1"
},
"3.1.1": {
"x86_64_linux_musl": {
"etag": "0x8DEC649596151AC",
"hash": "ae1ecd212663f3693ad9edf8b1a183900c9a52d3155ba6e354237f9a0f6463fc"
},
"x86_64_macos": {
"etag": "0x8DEC64976970B62",
"hash": "14d2678dfbfde18798151e86fbd91ebdadbb7424b18412a42a155dd8a2df4c7a"
},
"x86_64_windows": {
"etag": "0x8DEC6496E6C7E81",
"hash": "9d2c026e667bfd979fa7ba1cab8c4b24d2e73f336ec2d57f7fc72c7e73e5b4b6"
},
"aarch64_linux_musl": {
"etag": "0x8DEC6495FA18066",
"hash": "2ec865872e331c32fd12b08dae15332d3f92c0aa029219589684a4903ca85d11"
},
"aarch64_macos": {
"etag": "0x8DEC6496A7E4E2C",
"hash": "94b42a9e697be95675f6160ab031a9a5f1ec1e646d6f648d7b2f5cd59ececbc5"
},
"powerpc64le_linux_musl": {
"etag": "0x8DEC64967B205B0",
"hash": "1ec2d971b211da1d4bac2795c61d4041fb663d93fd98ebc2b87bdc0f067f547b"
},
"riscv64_linux_musl": {
"etag": "0x8DEC64973937F20",
"hash": "da91851b82d29e097385bc21cb2f2e449e284d7dae974e640d1f78ca0c33e722"
},
"s390x_linux_musl": {
"etag": "0x8DEC6497104520E",
"hash": "15433f2ac5f5be60e51538bce1f07c13b80f7b5ed474a247fd2159f7705dd871"
}
"version": "3.0.6"
},
"3.0": {
"version": "3.0.6"
+2 -22
View File
@@ -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
View File
@@ -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"
},
+2 -59
View File
@@ -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"
},
+1
View File
@@ -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"
},
+1
View File
@@ -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,52 +1,12 @@
{
"rust_crate": null,
"template": null,
"license_markdown": "[MIT](https://github.com/editorconfig-checker/editorconfig-checker/blob/main/LICENSE)",
"latest": {
"version": "3.7.0"
"version": "3.6.1"
},
"3": {
"version": "3.7.0"
},
"3.7": {
"version": "3.7.0"
},
"3.7.0": {
"x86_64_linux_musl": {
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-linux-amd64.tar.gz",
"etag": "0x8DEBA822CEFEBD7",
"hash": "9a0c3a5170bffa24f9e5f0def53d285777b6c5284a95367f40d399d0b76af552",
"bin": "bin/ec-linux-amd64"
},
"x86_64_macos": {
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-darwin-amd64.tar.gz",
"etag": "0x8DEBA822CDDD7B8",
"hash": "6cd2e4aa2a374d391e3baeaae43fc28906fd15b09490f5669eee206a63eef00a",
"bin": "bin/ec-darwin-amd64"
},
"x86_64_windows": {
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-windows-amd64.zip",
"etag": "0x8DEBA822C7D11CB",
"hash": "9c6b8a4cd7ccc5826ab96d34c460f37ab18b9cb50607d3ee9eb743fc47335da7",
"bin": "bin/ec-windows-amd64.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-linux-arm64.tar.gz",
"etag": "0x8DEBA822D52AB64",
"hash": "e978f3f0940469989930311af8e101dd9ce8c2ee4da69264f3d76a3787e961ad",
"bin": "bin/ec-linux-arm64"
},
"aarch64_macos": {
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-darwin-arm64.tar.gz",
"etag": "0x8DEBA822CD948FC",
"hash": "727e6ef506c6fbe7719cc29c69b495715b64514a00059f3f179077bfad0580e5",
"bin": "bin/ec-darwin-arm64"
},
"aarch64_windows": {
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-windows-arm64.zip",
"etag": "0x8DEBA822D49DBB7",
"hash": "249759725d0b7d687cbb87b2eab14147617e1e5e0a6390f6cc12b8c57da98dce",
"bin": "bin/ec-windows-arm64.exe"
}
"version": "3.6.1"
},
"3.6": {
"version": "3.6.1"
+2 -48
View File
@@ -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"
+3 -57
View File
@@ -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"
+1
View File
@@ -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,102 +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.2"
},
"0.19": {
"version": "0.19.2"
},
"0.19.2": {
"x86_64_linux_musl": {
"etag": "0x8DEC5783BD6A3E2",
"hash": "069d36043e4b57a4d4780612c248e5899d20b87d8a06c8cf93debd0927589b5e"
},
"aarch64_linux_gnu": {
"etag": "0x8DEC57830247234",
"hash": "b3489948698094fb787bf9ce85732ab96cccde9d6f68048a33d12c54ff84601e"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DEC578873018C8",
"hash": "da982aebd92ce39263ab6f123a1b49a311a6d4aedf94df274d6b41335aa5347c"
},
"riscv64_linux_gnu": {
"etag": "0x8DEC57803D29801",
"hash": "1578ce0e0a9bab3109560de97f765d48ab0bb455bdd09b5d8b3876a545b806df"
},
"s390x_linux_gnu": {
"etag": "0x8DEC57846D5918D",
"hash": "a951f5b67a638fa1d82af62e49d1e9e8e7bc995b0229d18dec1e620487eff734"
}
},
"0.19.1": {
"x86_64_linux_musl": {
"etag": "0x8DEBC4AE0ECBD5A",
"hash": "fadef57834f6b7a3514695eed65fce748efeb1e601073b40de3062df02894102"
},
"aarch64_linux_gnu": {
"etag": "0x8DEBC4AE56BAF89",
"hash": "b8142d894bcb5bb66f7113b0b5cef4e861cc10399453312c977f9d564fdd951b"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DEBC4AA0A11589",
"hash": "96a3118c55ee7ed60982dd9f3611f930dc3da0b648d6bf8a2c8bffd7da0524e3"
},
"riscv64_linux_gnu": {
"etag": "0x8DEBC4AD908F661",
"hash": "00f70a4c20fc820a42a3d3c681169b028474528f324f9ea3bc29cdc5a8584997"
},
"s390x_linux_gnu": {
"etag": "0x8DEBC4B0AA8CF46",
"hash": "2a460d5cf58e8332c4b5876f3c26203dfee898bd0411db9e9590bd03eb16c227"
}
},
"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"
},
+124
View File
@@ -0,0 +1,124 @@
{
"rust_crate": "jaq",
"template": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v${version}/jaq-v${version}-x86_64-unknown-linux-musl"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v${version}/jaq-v${version}-x86_64-apple-darwin"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v${version}/jaq-v${version}-x86_64-pc-windows-msvc.exe"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v${version}/jaq-v${version}-aarch64-unknown-linux-gnu"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v${version}/jaq-v${version}-aarch64-apple-darwin"
}
},
"license_markdown": "[MIT](https://github.com/01mf02/jaq/blob/main/LICENSE-MIT)",
"latest": {
"version": "1.6.0"
},
"1": {
"version": "1.6.0"
},
"1.6": {
"version": "1.6.0"
},
"1.6.0": {
"x86_64_linux_musl": {
"etag": "0x8DCB0789F5FD044",
"hash": "e5bad7939118e8dc0d28fea2ccbf351470cb28d2a4a04ff8baad8eb2a26cef18"
},
"x86_64_macos": {
"etag": "0x8DCB0789CE4EFB1",
"hash": "f93fd96c45902264637d4b9a8aaf0bd3e41571d58340da6c2ffeffd6b8d6c86b"
},
"x86_64_windows": {
"etag": "0x8DCB078CD84B6D9",
"hash": "def395eb31bab8af440938cddfe24113dfb68e9e5ea199903c3c354564c2296d"
},
"aarch64_linux_gnu": {
"etag": "0x8DCB078AABB6D06",
"hash": "d66e5ffe2aa6cd73572fbaebd625b5fbef37cea5dc20b5a56dfd3d2a22dcaf65"
},
"aarch64_macos": {
"etag": "0x8DCB078A397F875",
"hash": "7c62b0232f7b3491663100dbaa2c73fa15f7041e0a75c6c12c31f4b162236e31"
}
},
"1.5": {
"version": "1.5.1"
},
"1.5.1": {
"x86_64_linux_musl": {
"etag": "0x8DC9E75A9FBA045",
"hash": "e8f22c9eab38e475e8c7b4416b1886d0c1544166230bb256d5b7f631212c0a52"
},
"x86_64_macos": {
"etag": "0x8DC9E75ADB19362",
"hash": "7d4383f6fcb00438c52b21183a325ebb8ea98fd1b0d95c8bb7b7d632bc507b35"
},
"x86_64_windows": {
"etag": "0x8DC9E75DF7F6260",
"hash": "e7d800a1a16141ec5aa8c056a274c619debdae08fc19c91a92a88cd94418d8b7"
},
"aarch64_linux_gnu": {
"etag": "0x8DC9E75A514ECEF",
"hash": "a91a8626b29ca15449138ea2c496b75c8bd5f25198d51c46fb83bd7b7809a343"
},
"aarch64_macos": {
"etag": "0x8DC9E75B7626A1A",
"hash": "3fd00f216654a1cb06b638cbf54cb88f7e97d0f9292fd88340ab256db236edc2"
}
},
"1.5.0": {
"x86_64_linux_musl": {
"etag": "0x8DC95C7C0742176",
"hash": "36095f210f014670b50d5d8d447a3978abb6a919227f7f6140e7cb673d7503f0"
},
"x86_64_macos": {
"etag": "0x8DC95C7D06D3AE9",
"hash": "fb15e68e47ad19dfa15dcec1adb41104e9ff7b1a6b2af8325fe21f7a239cdeae"
},
"x86_64_windows": {
"etag": "0x8DC95C80589FC91",
"hash": "b8aad49b6186446f726a90816814201e2d3f8574cd6c399087e507e68f6f708b"
},
"aarch64_linux_gnu": {
"etag": "0x8DC95C7C4D0BF9A",
"hash": "a04f2cd1be227acc596dda7015da53f57b012951cf8234a230641ca7f700b602"
},
"aarch64_macos": {
"etag": "0x8DC95C7D5667A65",
"hash": "963b0261155f9d78b04d30372f2bb772623fc5402057c767c002211f9a744958"
}
},
"1.4": {
"version": "1.4.0"
},
"1.4.0": {
"x86_64_linux_musl": {
"etag": "0x8DC7B460BA5B41F",
"hash": "fce247e4b9693ff260293bdb7d4ef564f765ed6fe889c42cebfd5d2e36b591bf"
},
"x86_64_macos": {
"etag": "0x8DC7B4609EE5957",
"hash": "f12c87eed86258b226c747ccbef55db95e78e6925eee55fe96e8a5eee4fe69f3"
},
"x86_64_windows": {
"etag": "0x8DC7B463C8CB19C",
"hash": "bb8189ee62b3b467f82e06484a7ab7478f8ddc1cc67ec95b7d2ebc2da38dd14d"
},
"aarch64_linux_gnu": {
"etag": "0x8DC7B460011203B",
"hash": "2e6449091baf52bcb982e75685459464444ea8f29c7316d246f0bd407670c568"
},
"aarch64_macos": {
"etag": "0x8DC7B4609E258E3",
"hash": "545e26ecd01b44468a894cd6576290cc8f787d0f06dd0ef8cc0b02bfe4c95c55"
}
}
}
+3 -118
View File
@@ -20,127 +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.53.0"
"version": "1.49.0"
},
"1": {
"version": "1.53.0"
},
"1.53": {
"version": "1.53.0"
},
"1.53.0": {
"x86_64_linux_musl": {
"etag": "0x8DECBE4AF1AC1E4",
"hash": "7fedeb22c7e14d9ef1551e8b793700866d80f409f9884b0e80ebb65c11d4874d"
},
"x86_64_macos": {
"etag": "0x8DECBE4A74B5DA6",
"hash": "bc345a26d40ae4697cb6b2f2ca04cdf1fbdc8c50eba1b40684c8bf3f98555d72"
},
"x86_64_windows": {
"etag": "0x8DECBE4F15FF188",
"hash": "02308af0c174d3e0286f6bfc2b020258a3e12cd0c52c1d16fac8ef2c12dea0af"
},
"aarch64_linux_musl": {
"etag": "0x8DECBE4BD2264C2",
"hash": "f29d8e72380bc144465f632c7d59da311205eef2923d57511708b05b82f2e64f"
},
"aarch64_macos": {
"etag": "0x8DECBE4AAC07CDE",
"hash": "27f1361f2e4fb5d733837f1a9f80f85c237e5a36c75ee14961e59141713aa4ed"
},
"aarch64_windows": {
"etag": "0x8DECBE51F0763A0",
"hash": "b4cce34e56633d1659207412f59826eea60fcbc06ee09ceb133f6a13fc32b979"
}
},
"1.52": {
"version": "1.52.0"
},
"1.52.0": {
"x86_64_linux_musl": {
"etag": "0x8DEC5B5A6F2BA02",
"hash": "e0a712614574d45625332529c864754e26782422b7c7db931466180a618f092d"
},
"x86_64_macos": {
"etag": "0x8DEC5B5ADAE9FA6",
"hash": "52e4b7dc45d5934e9bc3b8f1ad3fe78bb92d0df1bca477de0c5449c59ac7a562"
},
"x86_64_windows": {
"etag": "0x8DEC5B5D6D67BD1",
"hash": "ac53a7da91a33e344042dbec11e4bf1e1ec1d65ca4b695fe71398206d2a1630d"
},
"aarch64_linux_musl": {
"etag": "0x8DEC5B5B1AFA6ED",
"hash": "41af45372c49c404ca7b9a318ae9de5564636e39c6520cc4d42bf678f3bfb1bc"
},
"aarch64_macos": {
"etag": "0x8DEC5B5B6FC8461",
"hash": "1538caf566c9d8dd99286a21c0e1224b89f6676b70c16a4bcbeb52dd21fc78f5"
},
"aarch64_windows": {
"etag": "0x8DEC5B60D5CF8B2",
"hash": "640816eb5ef85da89447831fcccc416c039edf35c191632e948d7d992ac30c71"
}
},
"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"
+2 -36
View File
@@ -1,43 +1,9 @@
{
"rust_crate": "knope",
"template": null,
"license_markdown": "[MIT](https://github.com/knope-dev/knope/blob/main/LICENSE)",
"latest": {
"version": "0.23.0"
},
"0.23": {
"version": "0.23.0"
},
"0.23.0": {
"x86_64_linux_musl": {
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-unknown-linux-musl.tgz",
"etag": "0x8DEB9CB8CCE3489",
"hash": "76a970a5e237344abc14be3de37ed50c021b659a9b66b3f54afc77e6d48ac501",
"bin": "knope-x86_64-unknown-linux-musl/knope"
},
"x86_64_macos": {
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-apple-darwin.tgz",
"etag": "0x8DEB9CB8CCCD686",
"hash": "e403b5be532fb77238b9489555bc61ccb36ea4b4c7efc0dde1f5e5290067babe",
"bin": "knope-x86_64-apple-darwin/knope"
},
"x86_64_windows": {
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-pc-windows-msvc.tgz",
"etag": "0x8DEB9CB8CCC1413",
"hash": "7624eaeaf4758bf94729ab2e0bc4ea11e52972eee1bcd581630212eba335fbb0",
"bin": "knope-x86_64-pc-windows-msvc/knope.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-aarch64-unknown-linux-musl.tgz",
"etag": "0x8DEB9CB8CC8BC73",
"hash": "c68758b1c3b007367ea40c22b1b1b052720557215935af09677d1561039698b4",
"bin": "knope-aarch64-unknown-linux-musl/knope"
},
"aarch64_macos": {
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-aarch64-apple-darwin.tgz",
"etag": "0x8DEB9CB8CC847CB",
"hash": "a6e231cc7f02032c5b49ad14149c7d11fd48f0e244f9fb48d5c4c47ffb0e3863",
"bin": "knope-aarch64-apple-darwin/knope"
}
"version": "0.22.4"
},
"0.22": {
"version": "0.22.4"
-1105
View File
File diff suppressed because it is too large Load Diff
-26
View File
@@ -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"
}
}
}
-166
View File
@@ -1,166 +0,0 @@
{
"rust_crate": "cargo-crap",
"template": {
"x86_64_linux_gnu": {
"url": "https://github.com/minikin/cargo-crap/releases/download/v${version}/cargo-crap-x86_64-unknown-linux-gnu.tar.gz",
"bin": "cargo-crap"
},
"x86_64_macos": {
"url": "https://github.com/minikin/cargo-crap/releases/download/v${version}/cargo-crap-x86_64-apple-darwin.tar.gz",
"bin": "cargo-crap"
},
"x86_64_windows": {
"url": "https://github.com/minikin/cargo-crap/releases/download/v${version}/cargo-crap-x86_64-pc-windows-msvc.zip",
"bin": "cargo-crap.exe"
},
"aarch64_linux_gnu": {
"url": "https://github.com/minikin/cargo-crap/releases/download/v${version}/cargo-crap-aarch64-unknown-linux-gnu.tar.gz",
"bin": "cargo-crap"
},
"aarch64_macos": {
"url": "https://github.com/minikin/cargo-crap/releases/download/v${version}/cargo-crap-aarch64-apple-darwin.tar.gz",
"bin": "cargo-crap"
}
},
"latest": {
"version": "0.2.2"
},
"0.2": {
"version": "0.2.2"
},
"0.2.2": {
"x86_64_linux_gnu": {
"etag": "0x8DEBA440F9CAAB2",
"hash": "bdd727be3a530b010eeb4758155026586d2b26ebe3329026a8aec1b010a3869d"
},
"x86_64_macos": {
"etag": "0x8DEBA440FA9E24C",
"hash": "aee1766b79c4f65efcf8d2d80c3fabadef5fc8ee82e2e1e4faa57015eea5caba"
},
"x86_64_windows": {
"etag": "0x8DEBA440FA2977E",
"hash": "ba3638c875064df550487af3760d45c959cb6c6f6853028204b88ecec63a9356"
},
"aarch64_linux_gnu": {
"etag": "0x8DEBA440F992C31",
"hash": "a739d806fa8f5dcff9eb437cbe219b45da7a1d9016751fa47e34ab47ac25b881"
},
"aarch64_macos": {
"etag": "0x8DEBA440F99C7BD",
"hash": "4912188a9853411719f55907b9ba7951c7539bf3bd9915625dd7166baaf236e6"
}
},
"0.2.1": {
"x86_64_linux_gnu": {
"etag": "0x8DEB72FF2CB21EB",
"hash": "0f6f07a065a0a881240582fb22176b673726aaaeef97bedbca4b1a91fa60dcf7"
},
"x86_64_macos": {
"etag": "0x8DEB72FF2D1358C",
"hash": "f810c612e5fde8f34687c2cb009862f26b151751699d0f1ffcadf9f82c9cf4a8"
},
"x86_64_windows": {
"etag": "0x8DEB72FF2C22B50",
"hash": "d097f926d15cfa80200749bb3c5adb883536a5011073ef90838cd4ea26b26b5d"
},
"aarch64_linux_gnu": {
"etag": "0x8DEB72FF2DAC7B7",
"hash": "dfcaa763f1c96cee0801e8f2f5ed9c708559bde5dc1108656b4aa25473a518cf"
},
"aarch64_macos": {
"etag": "0x8DEB72FF2CF3BF5",
"hash": "157e1107b19054d393e25fbf0e0a69547a7a52f694e5d8569cb76bc2abc55b74"
}
},
"0.2.0": {
"x86_64_linux_gnu": {
"etag": "0x8DEAF22F6098BC2",
"hash": "1e4996709952ea99033b59a874e8323f1b3a98bc30283dbd2968c04b41cffd3c"
},
"x86_64_macos": {
"etag": "0x8DEAF22F60F9F6D",
"hash": "4ddfe2851869d01752e3c2ef0c19e94235fe10cb2f7e6f9e4516f88e71e3e248"
},
"x86_64_windows": {
"etag": "0x8DEAF22F609B2AB",
"hash": "deef6ac2f68002337f395e16369d78531c7ebb9445f49a646ecf7d6492784f69"
},
"aarch64_linux_gnu": {
"etag": "0x8DEAF22F5FE4DCB",
"hash": "75e76dcbee5671e9deef781a3c54573f428a7043fb13ae9422cfe3bf57a65787"
},
"aarch64_macos": {
"etag": "0x8DEAF22F60B10A8",
"hash": "6a61c7fbf665d688ed5256f67d35d49231c305950ee372fbcc66742868530aca"
}
},
"0.1": {
"version": "0.1.1"
},
"0.1.1": {
"x86_64_linux_gnu": {
"etag": "0x8DEACEDFC8B7DEB",
"hash": "5259a6578c891302595846adff19ade34104369131d0f38a5bcb411d60d6a5cb"
},
"x86_64_macos": {
"etag": "0x8DEACEDFC88E8BF",
"hash": "0da129b85c3455b8803c1924c81a8c74cce455a223d71871c313d0b5a13fb3e7"
},
"x86_64_windows": {
"etag": "0x8DEACEDFC85B7FE",
"hash": "fc3b0ab6c72d74038ca94f53cf61a5e62a45e084a14e7a5af36d2fbebbe2cc29"
},
"aarch64_linux_gnu": {
"etag": "0x8DEACEDFC7F5684",
"hash": "0015b216a8ef8d247d6779a61d66026954f632a232f6cbbbe563078784b9521a"
},
"aarch64_macos": {
"etag": "0x8DEACEDFC86A14F",
"hash": "64bb8d276fff01c7deffc892673ebff28990189521706c5a77f42ebc41e3bc1f"
}
},
"0.1.0": {
"x86_64_linux_gnu": {
"etag": "0x8DEAC1F9C7CDB3C",
"hash": "5a41fc842d879a25c7175177810c71eecf85503eb46823e16fc546b1f07ef8e4"
},
"x86_64_macos": {
"etag": "0x8DEAC1F9C8A12C6",
"hash": "e43fea194fbd293a7002201c5904ef0418c217abc3b4479b4b8eee820692db0c"
},
"x86_64_windows": {
"etag": "0x8DEAC1F9C7C18C4",
"hash": "15a6936198d7d9405478d98e832d743a41232e60836356ceb31b7486f29cc7bb"
},
"aarch64_linux_gnu": {
"etag": "0x8DEAC1F9C8756B1",
"hash": "cb9578b2d887ae17fdbd3877d98f4b42c1620e89eb5409a60ab2bf5d499d2ce0"
},
"aarch64_macos": {
"etag": "0x8DEAC1F9C822C68",
"hash": "936e36aa8483c0ef7a4b55d511f016ae1db55118875e7258aacb69ef1d6ae4e0"
}
},
"0.0.2": {
"x86_64_linux_gnu": {
"etag": "0x8DEA48D57ECF9E2",
"hash": "d8d791524b58d1967bc0facc28215d8378a9cdd02420953cd9e395564839af1e"
},
"x86_64_macos": {
"etag": "0x8DEA48D57EB2733",
"hash": "9746f82d71cce9c17399776289cc53a3e6157db9a2e04826d21283d15541af8f"
},
"x86_64_windows": {
"etag": "0x8DEA48D57DDEF9D",
"hash": "760f6f44e45767feffd1a8075068de9b0ff54333cc564999f287d1dcf89d9397"
},
"aarch64_linux_gnu": {
"etag": "0x8DEA48D57F94814",
"hash": "1157a2e397315346a27d890a3daec21ad0088c93ea19ae44d990e14e4400b601"
},
"aarch64_macos": {
"etag": "0x8DEA48D57E4ECA3",
"hash": "296355a62cdea22b10b29b9dda94ff0f803f448352b6019c40a09cf2ba3475b1"
}
}
}
-850
View File
@@ -1,850 +0,0 @@
{
"rust_crate": "cargo-leptos",
"template": {
"x86_64_linux_gnu": {
"url": "https://github.com/leptos-rs/cargo-leptos/releases/download/v${version}/cargo-leptos-x86_64-unknown-linux-gnu.tar.gz",
"bin": "cargo-leptos-x86_64-unknown-linux-gnu/cargo-leptos"
},
"x86_64_linux_musl": {
"url": "https://github.com/leptos-rs/cargo-leptos/releases/download/v${version}/cargo-leptos-x86_64-unknown-linux-musl.tar.gz",
"bin": "cargo-leptos-x86_64-unknown-linux-musl/cargo-leptos"
},
"x86_64_macos": {
"url": "https://github.com/leptos-rs/cargo-leptos/releases/download/v${version}/cargo-leptos-x86_64-apple-darwin.tar.gz",
"bin": "cargo-leptos-x86_64-apple-darwin/cargo-leptos"
},
"x86_64_windows": {
"url": "https://github.com/leptos-rs/cargo-leptos/releases/download/v${version}/cargo-leptos-x86_64-pc-windows-msvc.tar.gz",
"bin": "cargo-leptos-x86_64-pc-windows-msvc/cargo-leptos.exe"
},
"aarch64_linux_gnu": {
"url": "https://github.com/leptos-rs/cargo-leptos/releases/download/v${version}/cargo-leptos-aarch64-unknown-linux-gnu.tar.gz",
"bin": "cargo-leptos-aarch64-unknown-linux-gnu/cargo-leptos"
},
"aarch64_linux_musl": {
"url": "https://github.com/leptos-rs/cargo-leptos/releases/download/v${version}/cargo-leptos-aarch64-unknown-linux-musl.tar.gz",
"bin": "cargo-leptos-aarch64-unknown-linux-musl/cargo-leptos"
},
"aarch64_macos": {
"url": "https://github.com/leptos-rs/cargo-leptos/releases/download/v${version}/cargo-leptos-aarch64-apple-darwin.tar.gz",
"bin": "cargo-leptos-aarch64-apple-darwin/cargo-leptos"
}
},
"latest": {
"version": "0.3.6"
},
"0.3": {
"version": "0.3.6"
},
"0.3.6": {
"x86_64_linux_musl": {
"etag": "0x8DE95BCD03283B7",
"hash": "895cc7ff10702b4f64b3ea5f9f0872e169c870692429650e13a3ae5550b0cdeb"
},
"x86_64_macos": {
"etag": "0x8DE95BCCF9F9B78",
"hash": "b49a928ff63c2d4733313ec008fdf6778d210a7a0667857055da8c75d3fd8a51"
},
"x86_64_windows": {
"etag": "0x8DE95BCCFF87B19",
"hash": "67863fc9aecd775207c27913e11c6c522de80bf82f46221321eeb0aaf475e66e"
},
"aarch64_linux_musl": {
"etag": "0x8DE95BCCF4E7B52",
"hash": "d45cd862c45628c9bbca43499eb7755e10f166a752a1dbc2ef2b34b3fd6fe622"
},
"aarch64_macos": {
"etag": "0x8DE95BCCF47A52F",
"hash": "69fb82cae1fecb49d6904fffab165edc6286bf09349c4502913539efe254e313"
}
},
"0.3.5": {
"x86_64_linux_musl": {
"etag": "0x8DE73F73C2C4505",
"hash": "4181b87782685637e1d1fe9103f55537a889ae7571c8417b86035e548f602c14"
},
"x86_64_macos": {
"etag": "0x8DE73F73B70CCCB",
"hash": "fd2ba3d0b7f2f1e8772994d8d1f9fdaef7569f76bd326731bc17b2331da0d131"
},
"x86_64_windows": {
"etag": "0x8DE73F73BB6D5CB",
"hash": "6606dffdbb17d5342d853ccaf5623dab7b2ec9b543642b5cb7a08229058a3d96"
},
"aarch64_linux_musl": {
"etag": "0x8DE73F73B1EEA31",
"hash": "fd0bb9f24e2bd79943b96d2fcaf8dfcdb923167454030df643aa832c8efe505b"
},
"aarch64_macos": {
"etag": "0x8DE73F73B4C0905",
"hash": "9d585de6a662f89ddbc6b3434f78b8e01f19435a136a3dc72a13e02bfe0ec35e"
}
},
"0.3.2": {
"x86_64_linux_musl": {
"etag": "0x8DE41019D2C8D89",
"hash": "b2c95fd0abcc1028b0e12e6d41ff4bfa9bae107453d20cf72bdce53f6b299932"
},
"x86_64_macos": {
"etag": "0x8DE41019C8D5709",
"hash": "62f63746de26ad805ca3adcdfdf60fdca952502705f7fecbd9c75a95e2c8c76a"
},
"x86_64_windows": {
"etag": "0x8DE41019CF713A9",
"hash": "8d20b744aa6cd5776d88ef4d5c93cba25ed719e0b7eb33b00540a180d27b6d0b"
},
"aarch64_linux_musl": {
"etag": "0x8DE41019C620AD1",
"hash": "fe270b58103935b5cb505af6c93a80047ca1a11d366ce654750c746ccafcd35f"
},
"aarch64_macos": {
"etag": "0x8DE41019C72C0F5",
"hash": "986d13f2f30f5ff2d77d726adbcb6e4115ecfeb8d9925848396ebb024a87db9c"
}
},
"0.3.1": {
"x86_64_linux_musl": {
"etag": "0x8DE311B3564F85C",
"hash": "96a8defb18e0ebed95ec62ab2a1697060d28597ad3b24d1a5cddf97b43ef0443"
},
"x86_64_macos": {
"etag": "0x8DE311B34A565B2",
"hash": "fbc7834dadbaaa27431e9e6c78f19fa3351aca52a77e80f212c6edc990ec33ac"
},
"x86_64_windows": {
"etag": "0x8DE311B35054283",
"hash": "849343a7d115a97358b796ed43db5841f4e87b9339380d1759ac3a47801a2e31"
},
"aarch64_linux_musl": {
"etag": "0x8DE311B3464D4B0",
"hash": "258004f030ad020807b623c0b26675639b9bc178b072cba243dc084c77cc1325"
},
"aarch64_macos": {
"etag": "0x8DE311B345E9A16",
"hash": "a7377c03bdce90ce6f0d688026d54ebb765bac49b35d3a97787db2293cfcd016"
}
},
"0.3.0": {
"x86_64_linux_musl": {
"etag": "0x8DE2944AC426D57",
"hash": "81315d314860495f9a790d8c6e3889be8e2fdcc66a41e582253275a442fb82e6"
},
"x86_64_macos": {
"etag": "0x8DE2944AB82DABD",
"hash": "382afb77a603acede533abe6f4f48818bef15b230998d63cc5a4ef0826750d86"
},
"x86_64_windows": {
"etag": "0x8DE2944AB7D629C",
"hash": "4271e18ade06cfed1040f9a88d7cf539ead260e2afdb18a21261898a1228bbe0"
},
"aarch64_linux_musl": {
"etag": "0x8DE2944AAE7E512",
"hash": "f6aaf9fb63b8e982f9ba0c1b00626cdfcf8509f836ea05558aba8f548be41a13"
},
"aarch64_macos": {
"etag": "0x8DE2944AAD6BA49",
"hash": "1258b8c361917b4cc0c42178bea03a47c899a467625bfc3c4e570b8c1b5427f1"
}
},
"0.2": {
"version": "0.2.47"
},
"0.2.47": {
"x86_64_linux_musl": {
"etag": "0x8DE1650DAB2D48B",
"hash": "31c739461a300c7ea3f7c08afe745a0c0c7b9f6bb4c27d4e68a7e31d24ed19e5"
},
"x86_64_macos": {
"etag": "0x8DE1650DA38D67C",
"hash": "cbab365881e87c7fb67194262fde626c19708629972708e2987d89f59eda8d16"
},
"x86_64_windows": {
"etag": "0x8DE1650DA4C6F84",
"hash": "b6d840b47f95727f01e8b243cebdcb935a593962dea62c881210d5a51c0f612f"
},
"aarch64_linux_musl": {
"etag": "0x8DE1650D9BBA7C4",
"hash": "bf9052ae9d51b8a5515e3b2f424bf3c9d0fac6573817ae6030a44076df8c4267"
},
"aarch64_macos": {
"etag": "0x8DE1650D9B01BF2",
"hash": "3fde8a30e66b2bd1ecf4a49248f1d5d74d7dee90aa1637cf2e72b1b651e383d0"
}
},
"0.2.46": {
"x86_64_linux_musl": {
"etag": "0x8DE11ADB6BB8981",
"hash": "fcbd89c713985ae14047f8b74075e69f8bf792d632d4bee568d853e39376b069"
},
"x86_64_macos": {
"etag": "0x8DE11ADB62632FF",
"hash": "15ee0e75467a3a02c47817ab7a422dba85b61ff538726103efb35174c350d58d"
},
"x86_64_windows": {
"etag": "0x8DE11ADB66172C2",
"hash": "f64eb4433be3011c613239c4d2805052928a274008c6a5e5fa92e7c6f24dcfd3"
},
"aarch64_linux_musl": {
"etag": "0x8DE11ADB5C9871E",
"hash": "be2035e9fe94b80cfdb4253796f77b38196a715e6ea52831499a13883b8c0f30"
},
"aarch64_macos": {
"etag": "0x8DE11ADB5E63DA2",
"hash": "fda6c5706b3d0e9a78e748b5af169a7cf493d3e73d969c0d71bb80e668934518"
}
},
"0.2.45": {
"x86_64_linux_musl": {
"etag": "0x8DE029CF8E1019B",
"hash": "486ce97d0ffc88030d52b0cf145c263b8734dfc1a9c8720013bea33403b48872"
},
"x86_64_macos": {
"etag": "0x8DE029CF86861BC",
"hash": "51d10e4de730d5dde9200e565559565989bb19d3536642d6ebcae323344f8693"
},
"x86_64_windows": {
"etag": "0x8DE029CF89BBB11",
"hash": "3d1ed9002c41f3e3873f4c7bc3a643ad294845f448ce07db1dac7222c149adc5"
},
"aarch64_linux_musl": {
"etag": "0x8DE029CF7D945EA",
"hash": "013efeaf4245e088e01dc38fbda50dcc1d073089c8e7acd6427b526e6e5725de"
},
"aarch64_macos": {
"etag": "0x8DE029CF7D6D7AE",
"hash": "a494e9b4c848708df9e20f8bc638c646de79695c69959bdc0b9699be53720b2b"
}
},
"0.2.44": {
"x86_64_linux_musl": {
"etag": "0x8DDF5F17E6C6AF8",
"hash": "c34d0bbff88f6bf37017ff24085c818d5736b0c45de26e6f06ac908d12817eb7"
},
"x86_64_macos": {
"etag": "0x8DDF5F17DB8B26B",
"hash": "94ed20ca192d05c2c105d80940048c7aaff78607d1a48ef8f901fd019bb63fdf"
},
"x86_64_windows": {
"etag": "0x8DDF5F17DB6B8DA",
"hash": "e06c20552b2c31aab7218d09b5663d947eb7405d4f47f78e23f9e0d2da7899f7"
},
"aarch64_linux_musl": {
"etag": "0x8DDF5F17D093AFC",
"hash": "699714ea7e915a48519b63cbf365fc2ab9a093a452bbb09940f3dd6be6d5d4c2"
},
"aarch64_macos": {
"etag": "0x8DDF5F17D1E58D5",
"hash": "f2bb8d86ed0c3d43ec8c7e3c1eec644d9336fc2cc1b027a24c61f45630d2a423"
}
},
"0.2.43": {
"x86_64_linux_musl": {
"etag": "0x8DDECA66B3CD223",
"hash": "500815a2ec5aa4cf7265e538d20e4c68983021456ec9a3e840a573e877655c6f"
},
"x86_64_macos": {
"etag": "0x8DDECA66AC0DA9F",
"hash": "23507c34cabc3932ae288772ec78539b85427366ffa11ff62b3e2b486e3b9e36"
},
"x86_64_windows": {
"etag": "0x8DDECA66B0AD6D1",
"hash": "580c52bf7b1f0b81d3eee4dcef941f1bccf9175d7985373620339d8c5c4c1bc8"
},
"aarch64_linux_musl": {
"etag": "0x8DDECA66A6821F5",
"hash": "b0cee60965eec40a6b4c9ce333534cf1e4d8398dfd756052e5f3ff67f82f701d"
},
"aarch64_macos": {
"etag": "0x8DDECA66A603B96",
"hash": "e4fce2dd4df16a4ee746be092d8b4523ac77858b75a6ecae22a66b11bb55e103"
}
},
"0.2.42": {
"x86_64_linux_musl": {
"etag": "0x8DDCC6E52490740",
"hash": "e73a0340bf329e00f3154ef6abc76831daafc347d74df25a0461e60ad07834ea"
},
"x86_64_macos": {
"etag": "0x8DDCC6E51B44C99",
"hash": "d90843ec13b80bc6ede50e47719c8f0f131bd01205b1dc078f2ee18791ea808e"
},
"x86_64_windows": {
"etag": "0x8DDCC6E51D40CE7",
"hash": "503c3f6a1005f7e388ffbd6b13d81fbf3a7d67270924ac301c18d767d90f5bde"
},
"aarch64_linux_musl": {
"etag": "0x8DDCC6E519527EC",
"hash": "869195770820064106f271fd1a072950f698a0ded3f67138589d7c9d53e5fc7c"
},
"aarch64_macos": {
"etag": "0x8DDCC6E515690A1",
"hash": "673dc19db3beef6189a1337f336e5f75db037c076e607e5596fa31f49c3c616f"
}
},
"0.2.41": {
"x86_64_linux_musl": {
"etag": "0x8DDCBDB0A0068D7",
"hash": "4e1abafcdbdccb5a456566b12a7a8d806c4d9541b4ac122acec51082eddc2d29"
},
"x86_64_macos": {
"etag": "0x8DDCBDB0A728041",
"hash": "446f356c17b624eaa64e2174ca57cef33f0bc0f913cc09b5db526465f0bcc9d7"
},
"x86_64_windows": {
"etag": "0x8DDCBDB09A76289",
"hash": "194b4fac5040e841ba7da742b0694769a9d6e0d90af2ff7e4078691f9b112c19"
},
"aarch64_linux_musl": {
"etag": "0x8DDCBDB092640D7",
"hash": "bf5c78b5efa0d848824fc6a7dae22b8acf27ba3c1afb354640538d11342252f3"
},
"aarch64_macos": {
"etag": "0x8DDCBDB091FB889",
"hash": "93cf74fcae8031d823b8e20d0f62184d6799fcf98ec7655ba9c70dc1c30dd5ba"
}
},
"0.2.40": {
"x86_64_linux_musl": {
"etag": "0x8DDC55FD33934E2",
"hash": "e289c7dd47cbd3040ace7df0f5e3ba0a7623f894237ef41ff58ee2d27b457154"
},
"x86_64_macos": {
"etag": "0x8DDC55FD2C82DC5",
"hash": "f0f929cbeb89fc75e14bec025a0b373471e074f4b44bb9b327f32294ee9e22a8"
},
"x86_64_windows": {
"etag": "0x8DDC55FD3149821",
"hash": "1462939a203f91e0b9c5461d5111a2907cbaeb643d4da4050274a616640cbfbc"
},
"aarch64_linux_musl": {
"etag": "0x8DDC55FD269619C",
"hash": "a9479414fe298bb29dfeee6e8f24465f2ee8799771853911cd34364190bffabe"
},
"aarch64_macos": {
"etag": "0x8DDC55FD275FD95",
"hash": "cf1f6868d66d6e655bc3e336b5875642f515d0fc886e47ec0ebcadbefee12551"
}
},
"0.2.39": {
"x86_64_linux_musl": {
"etag": "0x8DDC465C48187F2",
"hash": "2454c628f98593ceb6d532d3efa29caad43614330d5bd63b743287ffa6cc383f"
},
"x86_64_macos": {
"etag": "0x8DDC465C39C9622",
"hash": "388447f320ed5f6d4d97f89a4d4235c720f124ac40fc465d312638b3c63755fe"
},
"x86_64_windows": {
"etag": "0x8DDC465C42529C8",
"hash": "527b8a778ed6135ee20493355063adb617cbfad72216eb7fa4ecbc7ed796358b"
},
"aarch64_linux_musl": {
"etag": "0x8DDC465C3770FDA",
"hash": "545dd9221712d5a1d329f207b46465c2ffa0244484db2fb0d0fd4a028cfb2b79"
},
"aarch64_macos": {
"etag": "0x8DDC465C35C2C06",
"hash": "f89967c6736c77a044f3f2713e17649d722800a7eb9705d6b1a8d13d8c8305f8"
}
},
"0.2.38": {
"x86_64_linux_musl": {
"etag": "0x8DDBFC79C36CF90",
"hash": "b09215108919ca763f2b48028da24700a88eeb77b41f8059fe69703d3579e5d7"
},
"x86_64_macos": {
"etag": "0x8DDBFC79BB49D4C",
"hash": "e08227d5b7c8a3c2f32ec7f3fb1ac0360d5c591d882ae885825b5383d82bc638"
},
"x86_64_windows": {
"etag": "0x8DDBFC79C01F136",
"hash": "4b8b3ab6f787214b43f5b80a8bbb63e5fd2ecbb972c3e5771952808e7b15c315"
},
"aarch64_linux_musl": {
"etag": "0x8DDBFC79B5FD7B0",
"hash": "efdca9851323a8382244e7160176a9419197b70e7afd826fc92d07310bd04aff"
},
"aarch64_macos": {
"etag": "0x8DDBFC79B5A38CE",
"hash": "65f285f5674771c661e01f50bcc480cb33724036b0ddf2fb7f99a1883ce898ef"
}
},
"0.2.37": {
"x86_64_linux_musl": {
"etag": "0x8DDBA54108E9BBA",
"hash": "57d1c78f08abdd6199a8415cf17feea11284f82e71eec73a7717a8c27b30573c"
},
"x86_64_macos": {
"etag": "0x8DDBA5410122F64",
"hash": "f221ea606de61cdf7c68f67539c0ef7715194f88aa99c4cfc3daef9a6b43bad6"
},
"x86_64_windows": {
"etag": "0x8DDBA5410317B1D",
"hash": "2398951628e270738c4bb6e0cb2d5c46568e9620d1f16eeafd133cb63023a909"
},
"aarch64_linux_musl": {
"etag": "0x8DDBA540F883DBD",
"hash": "b820e78294fda02e987f679b4e324a2570218538b6e04dffe36ffa77e6db7281"
},
"aarch64_macos": {
"etag": "0x8DDBA540F7897DE",
"hash": "56db1b92c3b6b050a6c14bb1a6738ce1f3dc18fe13606aba15bf12f84c2b257b"
}
},
"0.2.36": {
"x86_64_linux_musl": {
"etag": "0x8DDB8B2D3851B12",
"hash": "f40fac78295e407e8368eab75cacd3355d7f39f3119c41f5c550ffbe5d249eeb"
},
"x86_64_macos": {
"etag": "0x8DDB8B2D33C2F0D",
"hash": "0f9618358c24fc7ba9b00650dcec62417cc1c9033dfb5718394db4c2f718976b"
},
"x86_64_windows": {
"etag": "0x8DDB8B2D33E4F7F",
"hash": "1b85029c4a428781946307e127bc4f40244137743b2c441b81ade05561169606"
},
"aarch64_linux_musl": {
"etag": "0x8DDB8B2D28BCDC6",
"hash": "409cf0f6dbfa60eea5d1d6824b26f3b2616afa1959b77d4cc073801c77ce3e2f"
},
"aarch64_macos": {
"etag": "0x8DDB8B2D28E1517",
"hash": "a082e8bef006d87084a9e79ba6778a31bf429f80b691893fbc793b92119f7b3e"
}
},
"0.2.35": {
"x86_64_linux_musl": {
"etag": "0x8DD94BDD66FF7B5",
"hash": "05b6c7d5a858959954387aa472880ca088b7f5cc32c59db6b275b41521b1fd8d"
},
"x86_64_macos": {
"etag": "0x8DD94BDD60BDA39",
"hash": "69d2afbd3336b34346089dc25bcb7fd8733ffabb5834d1f318b83e3464b2078f"
},
"x86_64_windows": {
"etag": "0x8DD94BDD62C0F4D",
"hash": "5f2161ea5ee2598fa1d93d0997e01e25208dd2f4ce5350fff55ece9378dca939"
},
"aarch64_linux_musl": {
"etag": "0x8DD94BDD5A1F6C3",
"hash": "d2131b0526cd9f2156089bb2c50845f3cb0467e2f731d6ff31a1cf603bd4cb36"
},
"aarch64_macos": {
"etag": "0x8DD94BDD590098E",
"hash": "26e60e9b3bdd3e8aac705aabb1ba6f84997d3f9e9ee836ce8e09a346319769cd"
}
},
"0.2.34": {
"x86_64_linux_musl": {
"etag": "0x8DD8C3C47506C7C",
"hash": "bd9d5781108c3c1d5a8a5c4517c6c4f0cce8edfcb44e1b834d016b4cf2769684"
},
"x86_64_macos": {
"etag": "0x8DD8C3C46A1695D",
"hash": "91a3ed09b5e7829ed762d8ac0efb398cee5f78b53ad7ebd3c4ba5c80b292dc70"
},
"x86_64_windows": {
"etag": "0x8DD8C3C46DB71F9",
"hash": "9b52f8f5df7b93a53714e79c0cb6a572c0ed00adc9a828b8b6f253c22668b0ac"
},
"aarch64_linux_musl": {
"etag": "0x8DD8C3C464B1EF8",
"hash": "24292b3ec7890677a327271ba35493fff12b15ad58a7487f7e34dfda381dea13"
},
"aarch64_macos": {
"etag": "0x8DD8C3C46669E60",
"hash": "cc1a2550bbc3c49eabebcbc23c49fc260824ee18f85713cea97a46e962d49839"
}
},
"0.2.33": {
"x86_64_linux_musl": {
"etag": "0x8DD870AF2BBD036",
"hash": "94c0fc7b733271a16dc58284739b64d4a57890a7b1fca20bedb6602884ff7eec"
},
"x86_64_macos": {
"etag": "0x8DD870AF24BD90B",
"hash": "e7997fe86afb99ce53d0fd9aa26028bd0af79c9ffe32e7738fff75e9e6afdb9a"
},
"x86_64_windows": {
"etag": "0x8DD870AF25E61D5",
"hash": "4ed81ca4d4bb2057113f2011eebe23cbe1c725ace46f6c5f4b3ca8b808e5185f"
},
"aarch64_linux_musl": {
"etag": "0x8DD870AF1CB04EA",
"hash": "006fb078e0a579b3822ed5ced5f1491da00e4e3e579c2da6e0752af941f0041b"
},
"aarch64_macos": {
"etag": "0x8DD870AF1E2DEEA",
"hash": "1534ea61baef46b3a393d2f441fb3ed526f37cc0fd63bb8baca8dad8dfb4c12e"
}
},
"0.2.32": {
"x86_64_linux_musl": {
"etag": "0x8DD69DEAD50BA8C",
"hash": "6f36c3be3125e49522948b23c1138f623a16221ba5c680f689d1dadf4a8503b5"
},
"x86_64_macos": {
"etag": "0x8DD69DEAC958FED",
"hash": "7e4917a66b224aa73ab0d51afe1ba979df5c5f3424387e4540c5021b60bbe4b7"
},
"x86_64_windows": {
"etag": "0x8DD69DEACF78D1E",
"hash": "4846ff8d2839314d74e0ac3f24382d64a93fb39226791522b37ba87e49c5406b"
},
"aarch64_linux_musl": {
"etag": "0x8DD69DEAC18D5D8",
"hash": "ab285431d0f90f765fb76ada94154e65a8f9685f89d816416867b8645735a097"
},
"aarch64_macos": {
"etag": "0x8DD69DEAC274496",
"hash": "9c5bc35a3c268f3669250f99ccc753ff84906094fba9132f9e2c0b4642ab5170"
}
},
"0.2.31": {
"x86_64_linux_gnu": {
"etag": "0x8DD6553D184CC0A",
"hash": "951f5d07a6e87934734116875aa2bf4b9e1ba4ad97ba0c1ccc4db5162a4bdaa8"
},
"x86_64_macos": {
"etag": "0x8DD6553D0D30D13",
"hash": "4a7fd9f1b42c7da2b3bb792d0de8e7de595cadd9656df84769937437c1c5f72a"
},
"x86_64_windows": {
"etag": "0x8DD6553D0EE17C0",
"hash": "f861adc075c5e2c5522afc7d89bc5d01ab9b1ce59d5d35ef952c2f3036f1a97c"
},
"aarch64_linux_gnu": {
"etag": "0x8DD6553D07F0A26",
"hash": "c3fdfd4ab5ecbfb006f1af0934d69bdc635f97d565743077b101e70564b4bccc"
},
"aarch64_macos": {
"etag": "0x8DD6553D0933EAE",
"hash": "708a812576c7aca6a6bfd934c8db47ec5134fc0b97790b157935bc5a03822fb8"
}
},
"0.2.26": {
"x86_64_linux_musl": {
"etag": "0x8DD3435A84B6ABA",
"hash": "294cc052e95eedbe3855565657cbda027ac8f96fd256e19c6eb1bd4e36005616"
},
"x86_64_macos": {
"etag": "0x8DD3435A7EAA4CF",
"hash": "a7549f8bb6d91d98e20c8bc9fb88c90e8f4df3f17a2ecdab2e9362a5b310a239"
},
"x86_64_windows": {
"etag": "0x8DD3435A811FDBD",
"hash": "1470c946571cd2e878fa356b2ffeb1d8e274c8ba8c72ee88ed7ed04d36ddd411"
},
"aarch64_macos": {
"etag": "0x8DD3435A7E46A3C",
"hash": "f3bb99b9b096dbb796f4bac53bccdd9851ac6459c4abee27acc96fb799c6ceb5"
}
},
"0.2.25": {
"x86_64_linux_musl": {
"etag": "0x8DD33D052699ED7",
"hash": "14bad398c0c956d685d16b9f2fe4af6af69148147ba713cfd35f749d68d3dc02"
},
"x86_64_macos": {
"etag": "0x8DD33D051B8EFE5",
"hash": "412a7f31aa69d51d81554753ab78256a57adcd4200ec40783a520a3e53692b60"
},
"x86_64_windows": {
"etag": "0x8DD33D05205814B",
"hash": "84e906ce6dd92059d2f6d2e848a53eaf744c31a6f9532ecd6d664c5340f78861"
},
"aarch64_macos": {
"etag": "0x8DD33D051D227E5",
"hash": "56b5f41f5f3353f43c17efcf38c99f828c04165c57870d38e4e5352710b0fa61"
}
},
"0.2.22": {
"x86_64_linux_musl": {
"etag": "0x8DD10C0591DF31E",
"hash": "d8f4842823ec439b89db249c61241588130da5f46d62382d69a35b45e0e154ae"
},
"x86_64_macos": {
"etag": "0x8DD10C058A18706",
"hash": "a3f088a4cb60fbdeb3d32f0be28e9a32eee0f7bb12c3538293d74a96e36ade0c"
},
"x86_64_windows": {
"etag": "0x8DD10C058B594B3",
"hash": "67cf1541c2aabbdda77f87e84b252aa2fd5100b6f04b6eb55334f0478de82d25"
},
"aarch64_macos": {
"etag": "0x8DD10C058B39B1E",
"hash": "6f33938f8b2771b368289e8ae7386834a14dc1c0b05c018937253844d413eb72"
}
},
"0.2.21": {
"x86_64_linux_musl": {
"etag": "0x8DCFC68AD872C9B",
"hash": "c1ffeef583d165fb222bb8f27120bc39fc7e8f4f54b14b2a2dec308d6f0d8dc4"
},
"x86_64_macos": {
"etag": "0x8DCFC68AC85F8FD",
"hash": "e48a339b5d48440c49666b41708428a684dcfa498cd74f054dafd4b780c87089"
},
"x86_64_windows": {
"etag": "0x8DCFC68AD216333",
"hash": "79307888ba6a21ff409cadea1eccf0a51b2be1098c80a3d1d56f7cf388fdc030"
},
"aarch64_macos": {
"etag": "0x8DCFC68ADB141A0",
"hash": "84e38ec31571194ff279e65251fb0b97b7145c96c887f7e287fdabd02b52a676"
}
},
"0.2.20": {
"x86_64_linux_musl": {
"etag": "0x8DCC2EEE12DE96F",
"hash": "76c6d54e067dc5f6e00287ae310ff13244f13e3351cf9230059eeb7f6517de76"
},
"x86_64_macos": {
"etag": "0x8DCC2EEE09A3E77",
"hash": "cae27571d95d0332ede254d4d9c3e1cf184f2871173997b2e4dd314e9b166db5"
},
"x86_64_windows": {
"etag": "0x8DCC2EEE0B39D6F",
"hash": "a2887f786655642286a396e1f273ae49744f0fac7edb7ba7cf3b7a78a5e030c0"
},
"aarch64_macos": {
"etag": "0x8DCC2EEE0A272A5",
"hash": "1b10e610d97dbe6d19e70e9c7330929e01d9134de5ef7dc35618fc638a4d31c9"
}
},
"0.2.19": {
"x86_64_linux_musl": {
"etag": "0x8DCC0BB788E68A5",
"hash": "a7d702d040567d77e26ca25a79da8e6034621770b9b956e5a02af4df172f847a"
},
"x86_64_macos": {
"etag": "0x8DCC0BB77E3A696",
"hash": "e4b6f89bd828f485bba7730479b95008e6771999184c55ae4b86404b3da6ce30"
},
"x86_64_windows": {
"etag": "0x8DCC0BB77E0C3A5",
"hash": "8e4ead0c0432a3e963a2267d936e23bf19dd336204c0302228a80e769d5cdf88"
},
"aarch64_macos": {
"etag": "0x8DCC0BB77D4C337",
"hash": "78f33044c672027d9662f1da7a04febbea81bcaa783fdd8366f35e96f6ed9bc4"
}
},
"0.2.18": {
"x86_64_linux_musl": {
"etag": "0x8DCBBF00A7FCA53",
"hash": "94a885ce16bfc4e0e2ca48ab3ba72cee5f10199d7d355eadeb83328ee23f0c80"
},
"x86_64_macos": {
"etag": "0x8DCBBF00A00542B",
"hash": "476b48b4e52300b8ed42e603eb34a57f9cde14735eb960e63db2e0502ea17fe8"
},
"x86_64_windows": {
"etag": "0x8DCBBF00A30082E",
"hash": "3485e3e471e5e6482359e9fc0b58e065ca142f54a7ce2a72a4034adebe3ef476"
},
"aarch64_macos": {
"etag": "0x8DCBBF009FD9822",
"hash": "db128a9f66d7990fd4028b0b7cc54ba44b8503e7654f343ed5153fdcb40745e4"
}
},
"0.2.17": {
"x86_64_linux_musl": {
"etag": "0x8DC531F4403EBA0",
"hash": "9b78387444e31c06f8309c60bea8db9a095cd884359854c468a1262af610012e"
},
"x86_64_macos": {
"etag": "0x8DC531F461E2BF8",
"hash": "ee28dde45f75077ea4ca4da63207018a678a48cd56907f0839c759d73bcf5862"
},
"x86_64_windows": {
"etag": "0x8DC531F455507BA",
"hash": "8deafcfd067ae93deb859a79dbaca2056d98336842ab90ac5ce0f2ae16d7ec31"
},
"aarch64_macos": {
"etag": "0x8DC531F4714E3A1",
"hash": "a01bc45e5481b85d51e20863c72c3328b0fa5e4bdd2437668f120b639646972c"
}
},
"0.2.16": {
"x86_64_linux_musl": {
"etag": "0x8DC3EF55884B1F4",
"hash": "19d635412ed31deb12cd8b0eeeca6ee1e287b020bc1ad5eb6c746804c06bf30d"
},
"x86_64_macos": {
"etag": "0x8DC3EF559D27672",
"hash": "15bda3058e9086db3539da07f4b7417799c7c2a7dd3460a8b80db985f29d390e"
},
"x86_64_windows": {
"etag": "0x8DC3EF556D8E3AA",
"hash": "d0be63f3cea3e79fd1aa6b9abde2aaba9633f4ee6f0af1995f116f71161297f1"
},
"aarch64_macos": {
"etag": "0x8DC3EF557D0F95C",
"hash": "bde25ac1aa3b7de23450a54999d48e3506b5e96934e2e9f584b083111e838291"
}
},
"0.2.15": {
"x86_64_linux_musl": {
"etag": "0x8DC3E08A612F6BF",
"hash": "36f686a869956f3c349d4246665d1be8dce18e98e3b426978c4790ebe40f7e5a"
},
"x86_64_macos": {
"etag": "0x8DC3E08A7E6B963",
"hash": "1aca57005f50cbc13da278f0c875f8d3efd06a6483526b3cb42ef8b873c38e20"
},
"x86_64_windows": {
"etag": "0x8DC3E08A71F8ECE",
"hash": "045802f1e85c9cca34cf101158b4b112f62672dcd051dd773f49e0f8e93a884a"
},
"aarch64_macos": {
"etag": "0x8DC3E08A952B933",
"hash": "5d70d1284ac3dc4e9c5b818d00f90e5c21fcc5c7c98b18e8079561266e85051e"
}
},
"0.2.14": {
"x86_64_linux_musl": {
"etag": "0x8DC3E05BFBB000D",
"hash": "4e0aaf834ec0decb20d7de4d6df15731825f6e7396d7b3d74c9e953dfa4455ba"
},
"x86_64_macos": {
"etag": "0x8DC3E05C335DB54",
"hash": "fa232ae11b5a75bd491b9c035fb05023004e8ecd570822fe3c67271df772cfb3"
},
"x86_64_windows": {
"etag": "0x8DC3E05C1B8FE8C",
"hash": "ed31963a2eb53b0b3e0f82edbfd426d724b9d75eed2edee146fa5a82630e4c68"
},
"aarch64_macos": {
"etag": "0x8DC3E05C49F1F18",
"hash": "9ed82032e842be92490f806fb02b5c6c146e766023cc290445c18c2a45ac4808"
}
},
"0.2.13": {
"x86_64_linux_musl": {
"etag": "0x8DC3CD0F1647116",
"hash": "008b5a5ed2156a8a6b494f178f667e50ff596a9952d393ece8416e92d727cca8"
},
"x86_64_macos": {
"etag": "0x8DC3CD0F326E20E",
"hash": "e7ff74b26c6d35a71d34c98f7f9479f03a15ecbda9534f555ba1866d7f29dc02"
},
"x86_64_windows": {
"etag": "0x8DC3CD0F29F5EF6",
"hash": "9931a8e34f80fe20485e7950c10fe98926270b5d43ed7f974341e00d9e75a5d7"
},
"aarch64_macos": {
"etag": "0x8DC3CD0F4C96BD9",
"hash": "4abadfaa0f48875632e88db4f27c6064d426a00b8420ed8b7a800613840fe037"
}
},
"0.2.12": {
"x86_64_linux_musl": {
"etag": "0x8DC3B249AC58888",
"hash": "b137bb6afe5a05a8652d86fd89969b8ebbc8e5dbb4db6014c039a90ab06c2667"
},
"x86_64_macos": {
"etag": "0x8DC3B249D8BE7C8",
"hash": "5cb13da45fbdc0c0181a295ce3f29127bf0c3a9dc641fd668352f0fa50aa4a0c"
},
"x86_64_windows": {
"etag": "0x8DC3B249CA461A6",
"hash": "596553390f0234d1672967f45fadd20ef9580451d7baa2ef1e60a9790994fab1"
},
"aarch64_macos": {
"etag": "0x8DC3B249EE2F02A",
"hash": "e7098298d9311d3aa5fdc98a9dbd0d6fee3014795c49e1b43f7b2d064faa0666"
}
},
"0.2.11": {
"x86_64_linux_musl": {
"etag": "0x8DC3AF83CF0AC76",
"hash": "4ddf9ed8f08d0d20d29cf953d13be191f73a37c017e2aef78442dd380bbf704f"
},
"x86_64_macos": {
"etag": "0x8DC3AF83F511C7E",
"hash": "e37f3cf38faf6bfe67d6ff2d01b231b12257cea69e9daaa3ba8cc5641b2441f4"
},
"x86_64_windows": {
"etag": "0x8DC3AF83E82CDF6",
"hash": "9f79b0b6faffb053686343c66539368a304e75e6cbaac583c21bb97371fe7ec2"
},
"aarch64_macos": {
"etag": "0x8DC3AF840B7F203",
"hash": "b770b6cf92b5604cd1365240d1841868e068f7b85feb79f9e946ca6cfaeaf9cb"
}
},
"0.2.10": {
"x86_64_linux_musl": {
"etag": "0x8DC3A2397186DE6",
"hash": "e35fb55b3471b1e47258d9ef6d3841427d8d053deb6e6303788752063c07e023"
},
"x86_64_macos": {
"etag": "0x8DC3A2395CCC9FA",
"hash": "004c696ed836c77d49e71953d094424af63bd7681709f4e7d1ff8d8fe075416e"
},
"x86_64_windows": {
"etag": "0x8DC3A23951DC712",
"hash": "aa130a30290243d2bbdb8fc84c609f4d7aec93fe32829d5b7fa558760d0aa739"
},
"aarch64_macos": {
"etag": "0x8DC3A2396B97AC6",
"hash": "e5f4d64d972eeef7b8ec0070ccbf777d8d9454062fde5f07b477e92bb3546b51"
}
},
"0.2.9": {
"x86_64_linux_musl": {
"etag": "0x8DC397E09C7FA0E",
"hash": "e16aa22ec5c85a15d8eae3a67c5f5df4b1fd709894005e29d70572c7f67ca776"
},
"x86_64_macos": {
"etag": "0x8DC397E0BC38A38",
"hash": "8441d2afda888fbc08baa6b461bff9d078021f42b2c8c77deee38bf9580dd8cd"
},
"x86_64_windows": {
"etag": "0x8DC397E788FAEF3",
"hash": "6abc9c45932a33ce8690640766f4ba0fdac1faa649ebc4ac56934f2324e33375"
},
"aarch64_macos": {
"etag": "0x8DC397E0CD10B8F",
"hash": "d6370e5c8cc84e7b8d2ac5eed1761cecc22b29d0e9d8d859ff1f797aa869c928"
}
},
"0.2.7": {
"x86_64_linux_musl": {
"etag": "0x8DC237B20379C4D",
"hash": "3ea95286d767c0ffeb6a30e44f7af8e2b2e522c8bc76f3bb168874d274d55201"
},
"x86_64_macos": {
"etag": "0x8DC237B227321C5",
"hash": "867aa8209b27835e20a267161e53edddd9510ab27523ae0740fc91f7bc49376a"
},
"x86_64_windows": {
"etag": "0x8DC237B218843A1",
"hash": "0a6dec2c6b237a1a83b5721943c2ee6718b88f042c9cd289379840d325601aac"
},
"aarch64_macos": {
"etag": "0x8DC237B26C10119",
"hash": "cb1a467ff9c1a6161c1c30618eb6e38b7c7526cf765f37cec3fd89c7ae842b67"
}
},
"0.2.6": {
"x86_64_linux_musl": {
"etag": "0x8DC191B081FC68B",
"hash": "f61d29b66aa2daaf8d01c4310affdd87b48733a18e096ff0cf71e952ee5d7d6d"
},
"x86_64_macos": {
"etag": "0x8DC191B0B0378F7",
"hash": "962270366567de4087d390fcbcab6b47f8286b473d557c80a16366e3734f0485"
},
"x86_64_windows": {
"etag": "0x8DC191B09DB3AAB",
"hash": "9eb0cec1238bfcf13c5aab7bbbc12d1ed0a7cc51d4d54cd888708b1df202a205"
},
"aarch64_macos": {
"etag": "0x8DC191B0C19CA16",
"hash": "104cbed78141e4f4a111317be36290f878e4d17c67a47baf0037381ef6cde9f7"
}
}
}
-498
View File
@@ -1,498 +0,0 @@
{
"rust_crate": "cargo-mutants",
"template": null,
"latest": {
"version": "27.1.0"
},
"27": {
"version": "27.1.0"
},
"27.1": {
"version": "27.1.0"
},
"27.1.0": {
"x86_64_linux_gnu": {
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v27.1.0/cargo-mutants-x86_64-unknown-linux-gnu.tar.gz",
"etag": "0x8DEC0BA45C43216",
"hash": "dfe6dc37d0342c891d2829b5a695aa57c2d0edecef7e7d0399a30cc6e206411e"
},
"x86_64_macos": {
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v27.1.0/cargo-mutants-x86_64-apple-darwin.tar.gz",
"etag": "0x8DEC0BA5ABB13BF",
"hash": "7109a9e9673fe0b977f622e6f32383b6d1cbbf3fbb63b7c30db3267462c74670"
},
"x86_64_windows": {
"url": "https://github.com/sourcefrog/cargo-mutants/releases/download/v27.1.0/cargo-mutants-x86_64-pc-windows-msvc.zip",
"etag": "0x8DEC0BA9D2E7495",
"hash": "2a2f00e47d4b458262a41501b0820aa26015fd35779903d2c8b30b2993f36791"
}
},
"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"
}
}
}
-110
View File
@@ -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"
}
}
}
-45
View File
@@ -1,45 +0,0 @@
{
"rust_crate": "cargo-vet",
"template": {
"x86_64_linux_gnu": {
"url": "https://github.com/mozilla/cargo-vet/releases/download/v${version}/cargo-vet-x86_64-unknown-linux-gnu.tar.xz",
"bin": "cargo-vet-x86_64-unknown-linux-gnu/cargo-vet"
},
"x86_64_macos": {
"url": "https://github.com/mozilla/cargo-vet/releases/download/v${version}/cargo-vet-x86_64-apple-darwin.tar.xz",
"bin": "cargo-vet-x86_64-apple-darwin/cargo-vet"
},
"x86_64_windows": {
"url": "https://github.com/mozilla/cargo-vet/releases/download/v${version}/cargo-vet-x86_64-pc-windows-msvc.zip",
"bin": "cargo-vet.exe"
},
"aarch64_macos": {
"url": "https://github.com/mozilla/cargo-vet/releases/download/v${version}/cargo-vet-aarch64-apple-darwin.tar.xz",
"bin": "cargo-vet-aarch64-apple-darwin/cargo-vet"
}
},
"latest": {
"version": "0.10.0"
},
"0.10": {
"version": "0.10.0"
},
"0.10.0": {
"x86_64_linux_gnu": {
"etag": "0x8DCE3E854D6E7DF",
"hash": "c7664d9db5dd2ff813f20303650ac8253fa712ff2a1ea9ce12bed71e346f1744"
},
"x86_64_macos": {
"etag": "0x8DCE3E854ABC2AD",
"hash": "144afee60a4d1d83948470cc55e7258230abf61380d8418b9a0a01609aa2385d"
},
"x86_64_windows": {
"etag": "0x8DCE3E854C93B9E",
"hash": "a543c793a50fc3ecd69b84ea4a83a6f142a01190cf276607e09e34bd8f0f9a2e"
},
"aarch64_macos": {
"etag": "0x8DCE3E854AA8B8B",
"hash": "4b6cdbb7b1287428daf4a9bb3dc83b73ceb336893dbee6df35371a2e06ced51a"
}
}
}
-826
View File
@@ -1,826 +0,0 @@
{
"rust_crate": "cargo-zigbuild",
"template": null,
"latest": {
"version": "0.23.0"
},
"0.23": {
"version": "0.23.0"
},
"0.23.0": {
"x86_64_linux_musl": {
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.0/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
"etag": "0x8DECD0A782C8514",
"hash": "f0aa9cc8220a84788c6e4a9b6d80422f041659227b680fdef982d5a8ddffddb4",
"bin": "cargo-zigbuild-x86_64-unknown-linux-musl/cargo-zigbuild"
},
"x86_64_macos": {
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.0/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
"etag": "0x8DECD0A77E2AFB8",
"hash": "f8c746d12dfae79ac0704c5aa13631a05b24c3e4ee7216eb40f70943bd8ca7b1",
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
},
"x86_64_windows": {
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.0/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
"etag": "0x8DECD0A7810B7E3",
"hash": "82ff1207be9e9533267b83dbe33d0b16b30043f116dc336d9a526667fa27622a",
"bin": "cargo-zigbuild.exe"
},
"aarch64_linux_gnu": {
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.0/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
"etag": "0x8DECD0A777B013D",
"hash": "5917d5416884cba0f23c2653016f7f2df2ec04e74eb6b259598fecc066f8c429",
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
},
"aarch64_macos": {
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.0/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
"etag": "0x8DECD0A777DE43B",
"hash": "3d8f1ad296d3f3e97122607f7c972393c6329801027acb71bb7d17a4e30ef092",
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
},
"aarch64_windows": {
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.0/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
"etag": "0x8DECD0A778C6EE0",
"hash": "d9ffaa509e5d5d05b931b2ee4bffaf666cb80ea585f20c2c8a80820f5a9186b1",
"bin": "cargo-zigbuild.exe"
}
},
"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"
}
}
}
-45
View File
@@ -1,45 +0,0 @@
{
"rust_crate": "convco",
"template": {
"x86_64_linux_musl": {
"url": "https://github.com/convco/convco/releases/download/v${version}/convco-ubuntu.zip",
"bin": "convco"
},
"x86_64_windows": {
"url": "https://github.com/convco/convco/releases/download/v${version}/convco-windows.zip",
"bin": "convco.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/convco/convco/releases/download/v${version}/convco-ubuntu-aarch64.zip",
"bin": "convco"
},
"aarch64_macos": {
"url": "https://github.com/convco/convco/releases/download/v${version}/convco-macos.zip",
"bin": "convco"
}
},
"latest": {
"version": "0.6.4"
},
"0.6": {
"version": "0.6.4"
},
"0.6.4": {
"x86_64_linux_musl": {
"etag": "0x8DEB96EA68FD07C",
"hash": "d6e43a1975949ef05d31bb1ac64fdd7c2dbc18b0b65df075c16dc296b8153be7"
},
"x86_64_windows": {
"etag": "0x8DEB96EA51CABCF",
"hash": "268f1c80abcb2cdc31174984a0a824f06705b5f62485e780f04008c5765219bd"
},
"aarch64_linux_musl": {
"etag": "0x8DEB96EA5E3148D",
"hash": "1e626914c90cf60314a8ef50d97566ebabb0ad5daf405fa7e4ca3193df1c73c3"
},
"aarch64_macos": {
"etag": "0x8DEB96EA769D246",
"hash": "88901e63aa26b601b6726bff8e05cab89d16ebcb772f719bad431a40b12caa54"
}
}
}
-45
View File
@@ -1,45 +0,0 @@
{
"rust_crate": "docgarden",
"template": {
"x86_64_linux_musl": {
"url": "https://github.com/jesse-black/docgarden/releases/download/v${version}/docgarden-v${version}-x86_64-unknown-linux-musl.tar.gz",
"bin": "docgarden-v${version}-x86_64-unknown-linux-musl/docgarden"
},
"x86_64_windows": {
"url": "https://github.com/jesse-black/docgarden/releases/download/v${version}/docgarden-v${version}-x86_64-pc-windows-msvc.zip",
"bin": "docgarden-v${version}-x86_64-pc-windows-msvc/docgarden.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/jesse-black/docgarden/releases/download/v${version}/docgarden-v${version}-aarch64-unknown-linux-musl.tar.gz",
"bin": "docgarden-v${version}-aarch64-unknown-linux-musl/docgarden"
},
"aarch64_macos": {
"url": "https://github.com/jesse-black/docgarden/releases/download/v${version}/docgarden-v${version}-aarch64-apple-darwin.tar.gz",
"bin": "docgarden-v${version}-aarch64-apple-darwin/docgarden"
}
},
"latest": {
"version": "0.1.0"
},
"0.1": {
"version": "0.1.0"
},
"0.1.0": {
"x86_64_linux_musl": {
"etag": "0x8DEB1081EA0A5CC",
"hash": "0c648e38e96e003d071014ca4cb17f195e4675ba7de9a94091ac1c34d584d45e"
},
"x86_64_windows": {
"etag": "0x8DEB1081E947E7A",
"hash": "32cd6cbc6208bccf8bc06fa33a18adcdd110f5351e5e67151ea84cbd8b135090"
},
"aarch64_linux_musl": {
"etag": "0x8DEB1081E95DC7B",
"hash": "4f341a72ec58518c0821dd0c948314077a198b9ead76140a90a04e22514ea0a1"
},
"aarch64_macos": {
"etag": "0x8DEB1081E8FC8D5",
"hash": "237613efe2cdf65f62e8b8eb9270df30522536f791809db912864958a7bae312"
}
}
}
-367
View File
@@ -1,367 +0,0 @@
{
"rust_crate": "jaq",
"template": null,
"latest": {
"version": "3.1.0"
},
"3": {
"version": "3.1.0"
},
"3.1": {
"version": "3.1.0"
},
"3.1.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.0/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DEC7D80500E325",
"hash": "e860b9d74cdc5a55327415ba7b7897843dbfb74aa2d1ebfe15f27102848104ea"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.0/jaq-x86_64-apple-darwin",
"etag": "0x8DEC7D80F6BFFA0",
"hash": "7ef31a6f506e23be8ffee1116a4764b8761628432928aea4db2e9b8a22c28999"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.0/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DEC7D82581DB50",
"hash": "8f4acdbd567f5f4615d95c64b0409f6d73d1597a8b1d847efae50aeacde5a43a"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.0/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DEC7D81BDB6472",
"hash": "80fbbb82008d5f4dd3bb378740faf784445184429f2ba082e6b1fbf76360c251"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.0/jaq-aarch64-apple-darwin",
"etag": "0x8DEC7D8112DF67B",
"hash": "56dd7006a4d8d9d5a0b599fba844e94fc9c4013551a0c997cf93e0950dd3736d"
}
},
"3.0": {
"version": "3.0.0"
},
"3.0.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.0.0/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DE8C18F1FF4B75",
"hash": "5beeeadd874b0bc9e4fdacff00b4dc5f8fb1430a85b3734e2c7210085dd1be08"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.0.0/jaq-x86_64-apple-darwin",
"etag": "0x8DE8C18F72D6AAB",
"hash": "361a9280910c9e4fda95cb1cb72b5f88ec2e2b0c8322cafbdc6c0aa6625e1a7d"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.0.0/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DE8C191270D618",
"hash": "07dfa5f20a9372ce96f26d5fbfdcedc4baad2162b487b3d980f35d0d0dce632f"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.0.0/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DE8C190620C58F",
"hash": "774b2446b7bff9f020ec9078a81e5c55853e87944d16fbeed8bae68ed8d42c81"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v3.0.0/jaq-aarch64-apple-darwin",
"etag": "0x8DE8C18EC3AC55D",
"hash": "61f666342a8d9569768ca69acefc28bacabfcfb2cf932d0717e50332f34302c5"
}
},
"2": {
"version": "2.3.0"
},
"2.3": {
"version": "2.3.0"
},
"2.3.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.3.0/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DDBD6705C8A4C2",
"hash": "46c20091037d2aa8e6b84aec965c95a9d0c68d5fac45f10e0c5c305af1cce69a"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.3.0/jaq-x86_64-apple-darwin",
"etag": "0x8DDBD6705A64F37",
"hash": "275cdb84799ff7862d2dd2fd6f909448b3890031f118644738f69d406b2bb863"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.3.0/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DDBD672633541E",
"hash": "6762d8fd23e1cf07807a5d4caea76c2c1a81ba5b4230638414baa07296943d47"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.3.0/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DDBD670C1411D3",
"hash": "23088f79440b80bd9608838898546e8604bab675bee13f862ab024ada5525ebc"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.3.0/jaq-aarch64-apple-darwin",
"etag": "0x8DDBD6714568195",
"hash": "974b0f74cda17b597719d144a948fd813effffd8adbda7d14376c3dcb56dd012"
}
},
"2.2": {
"version": "2.2.0"
},
"2.2.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.2.0/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DD843B29FA9F43",
"hash": "be54388872c66b6188a826b8848c1d91631837f4b4b9109315fda87d336928a4"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.2.0/jaq-x86_64-apple-darwin",
"etag": "0x8DD843B4CD14876",
"hash": "1d72e2b1f2da6948bd071b3f64aa3638a815a456b45f4c725bcb51524e931d88"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.2.0/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DD843B788189D2",
"hash": "09a7278599afe6d9f0ac57c40bea7a8e5062bd45da6537cae4ccd0202f61d6e3"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.2.0/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DD843B38627FB0",
"hash": "d69aa358bc2446803002793d2819a6e2051a775833a6389c46d8c35eac9c25ad"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.2.0/jaq-aarch64-apple-darwin",
"etag": "0x8DD843B34096015",
"hash": "169ddcfe1e64213e0240606b31122aedc48cd8a9119fb17660180c2e27206309"
}
},
"2.1": {
"version": "2.1.1"
},
"2.1.1": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.1/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DD52A01782DB3D",
"hash": "36552a9f55f53396a5f978d05c11858f8d86fbb9da9c8092f5ade0e00792bdac"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.1/jaq-x86_64-apple-darwin",
"etag": "0x8DD52A02992D59C",
"hash": "29d9463345459839a3b4406837872cca67954e8aba8c97633476e70ed86b9fbf"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.1/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DD52A03A66A98F",
"hash": "5ddc1f7bb0e44f699812dd3320c0c2c66960b61c4fa080ea23cba3753f371b0a"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.1/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DD52A02166E6DE",
"hash": "0e84042d654b84094dd5923382762fbaa74ed954db5f28bfffae172bcc0ca77e"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.1/jaq-aarch64-apple-darwin",
"etag": "0x8DD52A03125A18E",
"hash": "54f297f88be946c888ccf49bbba29ae3b4322ba49de379d484c85fcc3aa2f665"
}
},
"2.1.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.0/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DD34B2A69B0185",
"hash": "c40ef42b55e01e694e88f2b1de5056bfa1de4c96fbe5f551564f67f492ec14bb"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.0/jaq-x86_64-apple-darwin",
"etag": "0x8DD34B2D4B167E7",
"hash": "c94e004e1b44ca3282ecc4680892438e928d335093fa3f767bf9d276d0b4f868"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.0/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DD34B2CE2042D4",
"hash": "84e7f138df7d53ed618cb88574d4566a2e41ca06e57bf4dbfffe75180bb7f05e"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.0/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DD34B2C183D037",
"hash": "639278d47fc08ee549d212454b31b9a32a6ed516e01adbb6ba274bd12cda2a3e"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.1.0/jaq-aarch64-apple-darwin",
"etag": "0x8DD34B2BFE95382",
"hash": "5e3265e0152b2de53889a80f03b37a17543e3b8fbee2cc03de20bd3bf1c9e304"
}
},
"2.0": {
"version": "2.0.0"
},
"2.0.1": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.1/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DD1834D5D7DE05",
"hash": "62fc4fba975ad468f56ed6af9fad382a3e72c3d699b1ed8a56e84a960276c032"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.1/jaq-x86_64-apple-darwin",
"etag": "0x8DD1836C40D7520",
"hash": "05a694dfebd34cfd2b81f1856f78a0a13c372f91f9afd625b804c916222af510"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.1/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DD183503C99225",
"hash": "f7e82493736ac0c05215341372dfd631c6389d1c9801b92674dbfcb523ef7501"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.1/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DD1834C565944A",
"hash": "44296852cd1ce76413b834066922d0aca2d54f43c9e25c15ba697e95a76d854d"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.1/jaq-aarch64-apple-darwin",
"etag": "0x8DD1836BEAE21F0",
"hash": "ca544d7faf981218f3ec1c127c46daf96d7bd859063069b9cb67cda3ce7ff939"
}
},
"2.0.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.0/jaq-x86_64-unknown-linux-musl",
"etag": "0x8DD0EC16F9E23C7",
"hash": "e618b369bf7348cad59216c22cab485a640d00b5717a819a6d2298c1937b26bc"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.0/jaq-x86_64-apple-darwin",
"etag": "0x8DD0EC16972EEC5",
"hash": "bdc964ab054f9e04ffb0f8b0e67adc7e71f83bf6b391fcc7aa93c2a5ab601295"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.0/jaq-x86_64-pc-windows-msvc.exe",
"etag": "0x8DD0EC19861AA7B",
"hash": "3b271aff853a0b27db4afe59543f0083c2c8975044e91cbcd53f1528abdfe6a1"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.0/jaq-aarch64-unknown-linux-gnu",
"etag": "0x8DD0EC16D636078",
"hash": "f49959e9dd465c6d075e9f6b61eb813a9cbf3732972348def538ffbc42e4638d"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v2.0.0/jaq-aarch64-apple-darwin",
"etag": "0x8DD0EC16AEF570F",
"hash": "d6bae31a8833edd8698a1b5adefc33af65581cf41f61a85cf235fe79916743d2"
}
},
"1": {
"version": "1.6.0"
},
"1.6": {
"version": "1.6.0"
},
"1.6.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.6.0/jaq-v1.6.0-x86_64-unknown-linux-musl",
"etag": "0x8DCB0789F5FD044",
"hash": "e5bad7939118e8dc0d28fea2ccbf351470cb28d2a4a04ff8baad8eb2a26cef18"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.6.0/jaq-v1.6.0-x86_64-apple-darwin",
"etag": "0x8DCB0789CE4EFB1",
"hash": "f93fd96c45902264637d4b9a8aaf0bd3e41571d58340da6c2ffeffd6b8d6c86b"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.6.0/jaq-v1.6.0-x86_64-pc-windows-msvc.exe",
"etag": "0x8DCB078CD84B6D9",
"hash": "def395eb31bab8af440938cddfe24113dfb68e9e5ea199903c3c354564c2296d"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.6.0/jaq-v1.6.0-aarch64-unknown-linux-gnu",
"etag": "0x8DCB078AABB6D06",
"hash": "d66e5ffe2aa6cd73572fbaebd625b5fbef37cea5dc20b5a56dfd3d2a22dcaf65"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.6.0/jaq-v1.6.0-aarch64-apple-darwin",
"etag": "0x8DCB078A397F875",
"hash": "7c62b0232f7b3491663100dbaa2c73fa15f7041e0a75c6c12c31f4b162236e31"
}
},
"1.5": {
"version": "1.5.1"
},
"1.5.1": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.1/jaq-v1.5.1-x86_64-unknown-linux-musl",
"etag": "0x8DC9E75A9FBA045",
"hash": "e8f22c9eab38e475e8c7b4416b1886d0c1544166230bb256d5b7f631212c0a52"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.1/jaq-v1.5.1-x86_64-apple-darwin",
"etag": "0x8DC9E75ADB19362",
"hash": "7d4383f6fcb00438c52b21183a325ebb8ea98fd1b0d95c8bb7b7d632bc507b35"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.1/jaq-v1.5.1-x86_64-pc-windows-msvc.exe",
"etag": "0x8DC9E75DF7F6260",
"hash": "e7d800a1a16141ec5aa8c056a274c619debdae08fc19c91a92a88cd94418d8b7"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.1/jaq-v1.5.1-aarch64-unknown-linux-gnu",
"etag": "0x8DC9E75A514ECEF",
"hash": "a91a8626b29ca15449138ea2c496b75c8bd5f25198d51c46fb83bd7b7809a343"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.1/jaq-v1.5.1-aarch64-apple-darwin",
"etag": "0x8DC9E75B7626A1A",
"hash": "3fd00f216654a1cb06b638cbf54cb88f7e97d0f9292fd88340ab256db236edc2"
}
},
"1.5.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.0/jaq-v1.5.0-x86_64-unknown-linux-musl",
"etag": "0x8DC95C7C0742176",
"hash": "36095f210f014670b50d5d8d447a3978abb6a919227f7f6140e7cb673d7503f0"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.0/jaq-v1.5.0-x86_64-apple-darwin",
"etag": "0x8DC95C7D06D3AE9",
"hash": "fb15e68e47ad19dfa15dcec1adb41104e9ff7b1a6b2af8325fe21f7a239cdeae"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.0/jaq-v1.5.0-x86_64-pc-windows-msvc.exe",
"etag": "0x8DC95C80589FC91",
"hash": "b8aad49b6186446f726a90816814201e2d3f8574cd6c399087e507e68f6f708b"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.0/jaq-v1.5.0-aarch64-unknown-linux-gnu",
"etag": "0x8DC95C7C4D0BF9A",
"hash": "a04f2cd1be227acc596dda7015da53f57b012951cf8234a230641ca7f700b602"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.5.0/jaq-v1.5.0-aarch64-apple-darwin",
"etag": "0x8DC95C7D5667A65",
"hash": "963b0261155f9d78b04d30372f2bb772623fc5402057c767c002211f9a744958"
}
},
"1.4": {
"version": "1.4.0"
},
"1.4.0": {
"x86_64_linux_musl": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.4.0/jaq-v1.4.0-x86_64-unknown-linux-musl",
"etag": "0x8DC7B460BA5B41F",
"hash": "fce247e4b9693ff260293bdb7d4ef564f765ed6fe889c42cebfd5d2e36b591bf"
},
"x86_64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.4.0/jaq-v1.4.0-x86_64-apple-darwin",
"etag": "0x8DC7B4609EE5957",
"hash": "f12c87eed86258b226c747ccbef55db95e78e6925eee55fe96e8a5eee4fe69f3"
},
"x86_64_windows": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.4.0/jaq-v1.4.0-x86_64-pc-windows-msvc.exe",
"etag": "0x8DC7B463C8CB19C",
"hash": "bb8189ee62b3b467f82e06484a7ab7478f8ddc1cc67ec95b7d2ebc2da38dd14d"
},
"aarch64_linux_gnu": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.4.0/jaq-v1.4.0-aarch64-unknown-linux-gnu",
"etag": "0x8DC7B460011203B",
"hash": "2e6449091baf52bcb982e75685459464444ea8f29c7316d246f0bd407670c568"
},
"aarch64_macos": {
"url": "https://github.com/01mf02/jaq/releases/download/v1.4.0/jaq-v1.4.0-aarch64-apple-darwin",
"etag": "0x8DC7B4609E258E3",
"hash": "545e26ecd01b44468a894cd6576290cc8f787d0f06dd0ef8cc0b02bfe4c95c55"
}
}
}
-557
View File
@@ -1,557 +0,0 @@
{
"rust_crate": null,
"template": {
"x86_64_linux_musl": {
"url": "https://github.com/mongodb/kingfisher/releases/download/v${version}/kingfisher-linux-x64.tgz",
"bin": "kingfisher"
},
"x86_64_macos": {
"url": "https://github.com/mongodb/kingfisher/releases/download/v${version}/kingfisher-darwin-x64.tgz",
"bin": "kingfisher"
},
"x86_64_windows": {
"url": "https://github.com/mongodb/kingfisher/releases/download/v${version}/kingfisher-windows-x64.zip",
"bin": "kingfisher.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/mongodb/kingfisher/releases/download/v${version}/kingfisher-linux-arm64.tgz",
"bin": "kingfisher"
},
"aarch64_macos": {
"url": "https://github.com/mongodb/kingfisher/releases/download/v${version}/kingfisher-darwin-arm64.tgz",
"bin": "kingfisher"
},
"aarch64_windows": {
"url": "https://github.com/mongodb/kingfisher/releases/download/v${version}/kingfisher-windows-arm64.zip",
"bin": "kingfisher.exe"
}
},
"latest": {
"version": "1.103.0"
},
"1": {
"version": "1.103.0"
},
"1.103": {
"version": "1.103.0"
},
"1.103.0": {
"x86_64_linux_musl": {
"etag": "0x8DECB79598189D5",
"hash": "eae9f2753a16c3913ce30ecac70f5b5c5395f15d1de06f5c6a61465d44187e13"
},
"x86_64_macos": {
"etag": "0x8DECB795E1AA642",
"hash": "26f42e582a9f00290b278043b20804cc2e1530763182e5130dbb098e8dec9ff9"
},
"x86_64_windows": {
"etag": "0x8DECB79582258D1",
"hash": "72abd3ebb2260a86a88546cb8d2460863e660f131071a18aa696908d81e0c28b"
},
"aarch64_linux_musl": {
"etag": "0x8DECB795BE8916E",
"hash": "87ad7caeab498e7e61db001cc6f3217b61c7e41fb18115190a63592b6cea7b23"
},
"aarch64_macos": {
"etag": "0x8DECB795ECC65AF",
"hash": "6d853506dfca49087da2f934e7d88f9ef5e12eac1b1b91c43c7667d479bccb37"
},
"aarch64_windows": {
"etag": "0x8DECB7958C4B3A1",
"hash": "954596eeb3a14ddf1981673f7a729adbac596bdcff9e527abdbe7f6045281dda"
}
},
"1.102": {
"version": "1.102.0"
},
"1.102.0": {
"x86_64_linux_musl": {
"etag": "0x8DEBD6B8212CD77",
"hash": "bd408852dcf3e21a33c14835cc877d7e728ef3e764dda0ef9fff1e73f5f2a0d4"
},
"x86_64_macos": {
"etag": "0x8DEBD6B860DE7E8",
"hash": "26d13e7becc285ff09f5714129d3cb47d5c3df7975c3cb151bed7619e4476c57"
},
"x86_64_windows": {
"etag": "0x8DEBD6B80A0B773",
"hash": "75f0698ba17799613772aab686e21835409d3d6f27f5913e20a208b2409b4b8b"
},
"aarch64_linux_musl": {
"etag": "0x8DEBD6B8407FFA1",
"hash": "99af0e626be31c3851f2c01ef5ffb78ad18c626a995395d25ebc9c74de837f58"
},
"aarch64_macos": {
"etag": "0x8DEBD6B86A86982",
"hash": "b6c8cc13f39239d32752d1ca3b39b819f00e6eba699b39310a68abfe5dfcf1f5"
},
"aarch64_windows": {
"etag": "0x8DEBD6B815CCC55",
"hash": "b4ce427bbb649d984b0f50a67ed7745c9c81f6bbe48e2a409f8b8bba7296a1b6"
}
},
"1.101": {
"version": "1.101.0"
},
"1.101.0": {
"x86_64_linux_musl": {
"etag": "0x8DEB87233ED7247",
"hash": "20e30cbc21fdf9569f5b770685a0955b573e86b6bce5dbb4010930faa764e3c5"
},
"x86_64_macos": {
"etag": "0x8DEB872381312A8",
"hash": "f0954c140227af887d553b8487d3248724b88ce09ec109133d4502c7f8172834"
},
"x86_64_windows": {
"etag": "0x8DEB87232624C90",
"hash": "c5c480362f0451908428cd615fad507ba89569501360c4e9c6bf2abdef5d19b9"
},
"aarch64_linux_musl": {
"etag": "0x8DEB8723597214D",
"hash": "1464d04dc1f020da3cefc9ca5a84f892819eba24529d9454ce51a381282f6086"
},
"aarch64_macos": {
"etag": "0x8DEB87238E6B307",
"hash": "44b25ae95a42a6c3c765ffccefe6884cc7560990e919a12a36f4cf8eaf56eee9"
},
"aarch64_windows": {
"etag": "0x8DEB872330C7370",
"hash": "d18ee8e62d5e0b8885872432af76de75dd3e9401f1c595b9e424bc1f19a4bb28"
}
},
"1.100": {
"version": "1.100.0"
},
"1.100.0": {
"x86_64_linux_musl": {
"etag": "0x8DEB5FDFBCEC1E1",
"hash": "7e31dbae6e2ac6b0ee4a4a127c7eed5dd329bbe7c5ca13eb8a227af9b94304aa"
},
"x86_64_macos": {
"etag": "0x8DEB5FDFF691046",
"hash": "06ce57d7ed9aade94665b958d0868eae8024ec8d31b12ef028f98c4f2728ca82"
},
"x86_64_windows": {
"etag": "0x8DEB5FDFA890A77",
"hash": "6077b87c7febb9df1630c4fc7af09fd79ebc0af919bfe1e36291a4546bb7f66e"
},
"aarch64_linux_musl": {
"etag": "0x8DEB5FDFD8690D0",
"hash": "8a2a991056977e8ff1a8f17e149c7e511c4a6d56c6be283d0ebeb641c3f91134"
},
"aarch64_macos": {
"etag": "0x8DEB5FDFFFC93EE",
"hash": "2fe06837dfda7886476527ef9058b8e56bc12d4c6cff302b42f93b0690b8d50e"
},
"aarch64_windows": {
"etag": "0x8DEB5FDFB3074E5",
"hash": "1c7ecbfc7b8f412b980123ce1f6a10e3627c06a4d4201043ef3e05fd390611a9"
}
},
"1.99": {
"version": "1.99.0"
},
"1.99.0": {
"x86_64_linux_musl": {
"etag": "0x8DEAAD32336DC65",
"hash": "bd3bb81650d65a40207f01ca2f23db60d7587216cc2df170f3e6d5de8e72ec05"
},
"x86_64_macos": {
"etag": "0x8DEAAD3278EE921",
"hash": "a4eced6989fc74b3b13110aa933292aded4e229835641d5b1d25c5e7a04666a2"
},
"x86_64_windows": {
"etag": "0x8DEAAD3216781D6",
"hash": "0e66e882d550ec74d54a08d601aa50fb659a76addfd3740ace3745fbfb47a02a"
},
"aarch64_linux_musl": {
"etag": "0x8DEAAD3254432B5",
"hash": "97fdac13c3e33e29fe81ec69d4c00172780d93c97faff2087f915648a59e8172"
},
"aarch64_macos": {
"etag": "0x8DEAAD328484099",
"hash": "987598100184cc51c52a62ac5b8e5a492a10fd5ac7bc19cbd6baf4741980eb6d"
},
"aarch64_windows": {
"etag": "0x8DEAAD3224A7976",
"hash": "b06b8aeeb96c22e303640cbe455e99fdef197434a8f23b32d1eb45455a8411f4"
}
},
"1.98": {
"version": "1.98.0"
},
"1.98.0": {
"x86_64_linux_musl": {
"etag": "0x8DEA7046FCDAF1B",
"hash": "d1e45d48266d71fe9a0e38fd0e3ce8c0dc22224f6ab51f712810c76c5ea27460"
},
"x86_64_macos": {
"etag": "0x8DEA70474571B73",
"hash": "387819a9eeaa745ffa4069a149f59925d11cbaa5a249a4cdbcf16a6ae9463861"
},
"x86_64_windows": {
"etag": "0x8DEA7046DFC340A",
"hash": "0ff12a848e3dbe5504f078fb1a0d4647af1ffb6732082eb82346e5e761aa9ac5"
},
"aarch64_linux_musl": {
"etag": "0x8DEA70471FC4A8E",
"hash": "6c2f5de92204855332a43a49a8b89ebb9cb50ecb8abc1657841faf413d79ace2"
},
"aarch64_macos": {
"etag": "0x8DEA70475496B16",
"hash": "b0cb7a6fcd69bfb8ee703f59048fef777cc56789ada73063dd7b6617ed3c4fd4"
},
"aarch64_windows": {
"etag": "0x8DEA7046EF07D96",
"hash": "655d4f7a521af2e01cddc1e1ef153bf7367b68f1832918558dca5745cdeb41b9"
}
},
"1.97": {
"version": "1.97.0"
},
"1.97.0": {
"x86_64_linux_musl": {
"etag": "0x8DEA273722281C8",
"hash": "d67d17eb98e10722e6ffb0a16228f03c3af0088b1d2daccbc32ca88a21f733e6"
},
"x86_64_macos": {
"etag": "0x8DEA2737645D763",
"hash": "9dd0b506fbcc163c418bd9579649faedc9423befe03ea79ea179fd0ff7ee07e1"
},
"x86_64_windows": {
"etag": "0x8DEA27370A6B551",
"hash": "ff32c1f4d78fda02f3f1a807eeaa8ca22aacd620d1b580bb87b5bdbaf85dbe17"
},
"aarch64_linux_musl": {
"etag": "0x8DEA27374015B70",
"hash": "e3b9862f2f3b32dee3fdaf766b39fca37b6462a99e566636e71debc7e70c0517"
},
"aarch64_macos": {
"etag": "0x8DEA27376F1A98C",
"hash": "efb4a9c9b5c1a482a5e29977934161016a1091025f0b176daca620243ea509ca"
},
"aarch64_windows": {
"etag": "0x8DEA27371664765",
"hash": "159ecad71159505c57ecc02877fb07c3144cf790d1f89f4829f0bd7356e64cda"
}
},
"1.96": {
"version": "1.96.0"
},
"1.96.0": {
"x86_64_linux_musl": {
"etag": "0x8DE9F2A1F933167",
"hash": "dbe63cbe117b70944f3dca3e87eff556ff1efa56a62ec7e1431af922601c201a"
},
"x86_64_macos": {
"etag": "0x8DE9F2A24839FD4",
"hash": "49b3fcee655e8a4554a8e953915af6632635140be76d5bd2ee387eb3f4944ca6"
},
"x86_64_windows": {
"etag": "0x8DE9F2A1DC5CFC9",
"hash": "2d89f4a61a0d26dd80011f9cd8ee478003d0ea116e70cce2b3fe15a921e04e0e"
},
"aarch64_linux_musl": {
"etag": "0x8DE9F2A22069F8C",
"hash": "63ba9d97ad422eabd7b7316074f362c4ba9cb0ca782ff844409af5e09a2e1fb0"
},
"aarch64_macos": {
"etag": "0x8DE9F2A254C7670",
"hash": "e265cc24ef3bae1b4e56e333fea42ccdf59c053ccc960740425cf10faff38000"
},
"aarch64_windows": {
"etag": "0x8DE9F2A1E94E0FB",
"hash": "e3efa4bee036b940ba200d33ee228fa4ba7e468dacc29faffe01ceb06b98a6cc"
}
},
"1.95": {
"version": "1.95.0"
},
"1.95.0": {
"x86_64_linux_musl": {
"etag": "0x8DE96DC718CBACF",
"hash": "69046130ae047ec28d928f7b5b6aab2ed7917ad4ba4d684b0b3a6bd36b1e120e"
},
"x86_64_macos": {
"etag": "0x8DE96DC7575E1F6",
"hash": "d24f2112e56dd9043f03e7af7f0d1abf1ba8f7deca8f583f3717f44a6472b8c3"
},
"x86_64_windows": {
"etag": "0x8DE96DC7035FF90",
"hash": "b5a240f1406d41ba59ac92152f110983353ba7a4a61b8a470dccc0ee5dc24c09"
},
"aarch64_linux_musl": {
"etag": "0x8DE96DC73752716",
"hash": "608ca065ff36959bdac6ed180b93e1a33f0848632ba0c14f56afd947c95da540"
},
"aarch64_macos": {
"etag": "0x8DE96DC762A3631",
"hash": "684e7e0fe99ac9b10e08d46432bab5168af90baf58f2780f5e7f7fedfbd7a822"
},
"aarch64_windows": {
"etag": "0x8DE96DC70DB7070",
"hash": "e4e13a1fe1eb1fcf5e3b49eda3947e1033a4b67d4d38fabf42078682a18eb307"
}
},
"1.94": {
"version": "1.94.0"
},
"1.94.0": {
"x86_64_linux_musl": {
"etag": "0x8DE93592123F015",
"hash": "b43f39b55c23ccd43b12e3c2d3a7ba2309d0aa0b6632d4d16e3161db68f78f56"
},
"x86_64_macos": {
"etag": "0x8DE935924E8A025",
"hash": "1f32cdd16c9df580c5a073eed1f67b74ebed19c45d843463eef50edbe31fa691"
},
"x86_64_windows": {
"etag": "0x8DE93591FD40B51",
"hash": "f005c14d63aaac8a5c8251bb73d116941487d6870ab04b190f5f51bef4fcb972"
},
"aarch64_linux_musl": {
"etag": "0x8DE935923027BD2",
"hash": "856002c1e6d931259589e671596bf2b38fd728abf4e64a0df1f854e476813fc3"
},
"aarch64_macos": {
"etag": "0x8DE93592590582F",
"hash": "ca45930ef4d58f463b52a44f307327fe71ff4786bb1805d5c22483fa71654066"
},
"aarch64_windows": {
"etag": "0x8DE9359206ABF86",
"hash": "2d745ee399d289a17cf4525b0033e99c947a227fbdd9f950943239a5dc3b70a3"
}
},
"1.93": {
"version": "1.93.0"
},
"1.93.0": {
"x86_64_linux_musl": {
"etag": "0x8DE909713A9E051",
"hash": "736fd135e92dd81779b6b8c485f9676301b6ab1fb4f71ae5057272046b1caed8"
},
"x86_64_macos": {
"etag": "0x8DE9097184BC3C9",
"hash": "9b0489061bee1610be54cdf5789a31997bd9e41d062e57d96602eb1c01706006"
},
"x86_64_windows": {
"etag": "0x8DE90971218F57C",
"hash": "d4062669d20f03436a2fbbfb9813ab5211b9746b764ab3def3d82c3c500a51a6"
},
"aarch64_linux_musl": {
"etag": "0x8DE909715F9C1C5",
"hash": "1244e59f8a73b15d8974cfcb02f3639bea4391f9f75dbd3fa5b9535855a6119c"
},
"aarch64_macos": {
"etag": "0x8DE909719103297",
"hash": "13b77e529cdb0fd29b57b9094965b12e885a1d21f34e0a4ea05644f8b9b271df"
},
"aarch64_windows": {
"etag": "0x8DE909712E54AA0",
"hash": "fe4a20f9e77de45d334cdad869b6e5032d22d0f96b400c7caa19b87302eaa989"
}
},
"1.92": {
"version": "1.92.0"
},
"1.92.0": {
"x86_64_linux_musl": {
"etag": "0x8DE8E1F92D272D8",
"hash": "ff47fda08b0c170a1640334082c3dcec989218a849642f86358e6b5aeafe7488"
},
"x86_64_macos": {
"etag": "0x8DE8E1F969798F8",
"hash": "ed8569c7b03bcc41aa2225f01e941b2bf6342aac8c45fe81e6ae3ca85cf512da"
},
"x86_64_windows": {
"etag": "0x8DE8E1F91565825",
"hash": "857f9cb80bc575edb157334c56d4b6f0e6636250066a2ab098c890bc29575858"
},
"aarch64_linux_musl": {
"etag": "0x8DE8E1F94B5672F",
"hash": "c4cb47eb3a9b075c574060010a94609aa272459f9c99dbf3d444e8c7d016b8ac"
},
"aarch64_macos": {
"etag": "0x8DE8E1F974AB623",
"hash": "e2773f083c0802e5844a0ef17276069cc11b23d54ea82af2aa61e54a80213c5a"
},
"aarch64_windows": {
"etag": "0x8DE8E1F920CCCE9",
"hash": "808e1c372ac96a3245170efd4b80022772bc101ca742f5e1dc26e5b38dbab84f"
}
},
"1.91": {
"version": "1.91.0"
},
"1.91.0": {
"x86_64_linux_musl": {
"etag": "0x8DE8CF1C317F20A",
"hash": "02355ce1a74e23f3d1f8a877914b456bfacb55af60e850da1a179c3be3652a96"
},
"x86_64_macos": {
"etag": "0x8DE8CF1C6D50ACB",
"hash": "5a8fb6e5181b6a8bd18e092739f4e7406d6880755954e946bd3b8287453b213d"
},
"x86_64_windows": {
"etag": "0x8DE8CF1C1A6A0AA",
"hash": "18a881af919ec69c26170096c9ce60a580a9d1ec37e683d7e9acec202c38099c"
},
"aarch64_linux_musl": {
"etag": "0x8DE8CF1C4EE7136",
"hash": "dd101ccb4e1d2765f37727b17f0972cbff46f8883eab35021b1c0df843650ba9"
},
"aarch64_macos": {
"etag": "0x8DE8CF1C77B3E2C",
"hash": "2a39b4eeecf132d197e982939a60a22ba7351c2336a11abff3242b3eeb05c96d"
},
"aarch64_windows": {
"etag": "0x8DE8CF1C2581200",
"hash": "519422a2dfc0558298d7574172ab3d09609ccad410160bfbc9f9722846d9dff9"
}
},
"1.90": {
"version": "1.90.0"
},
"1.90.0": {
"x86_64_linux_musl": {
"etag": "0x8DE857619F1A1BF",
"hash": "c9e0dc88653f53758f13172fe807e954015639d2372ddb3e5e136ee018bf4087"
},
"x86_64_macos": {
"etag": "0x8DE85761ED8831A",
"hash": "894760ea7a3cb4410c0b22f1a7439c8842a4ac87fdd43e582e42436758e910c5"
},
"x86_64_windows": {
"etag": "0x8DE8576184DDE7D",
"hash": "492188a2a6a7fc14aa52a9b96962dd7be630a55d5cfebf5583f26e669b846529"
},
"aarch64_linux_musl": {
"etag": "0x8DE85761C67A79D",
"hash": "42acd9368a731501d027b278ddb4564c801f9dd2156fceb15a9ea155df8076d2"
},
"aarch64_macos": {
"etag": "0x8DE85761F89CE3E",
"hash": "2c3dbdbb13d3d0b4be97165292d87543aad067ddfbac88a31a6566d9d47827a0"
},
"aarch64_windows": {
"etag": "0x8DE8576192917F4",
"hash": "5b7cfc14f5045ad19c4f4af707235f0a8667a386d93fa56b95ed2bf7f428c688"
}
},
"1.89": {
"version": "1.89.0"
},
"1.89.0": {
"x86_64_linux_musl": {
"etag": "0x8DE831CEAB45536",
"hash": "c2a7579b5e19088536be5f71bb23b4f926f2683e4de0f5d3c10399296f350f88"
},
"x86_64_macos": {
"etag": "0x8DE831CF05AEA88",
"hash": "966d345850daf6ac309df3e0b38fdfe8a0c643e1dae89a9ae967e401079a3a9c"
},
"x86_64_windows": {
"etag": "0x8DE831CE8815121",
"hash": "d86c719cd3f17206827635ca3a46a60a9a6a27f2e630ebbedfff285505e67652"
},
"aarch64_linux_musl": {
"etag": "0x8DE831CEDC1818B",
"hash": "a2c10bfc2bf8572a1493fc4b041f994b310e115e5ada504088667c5cfbf32722"
},
"aarch64_macos": {
"etag": "0x8DE831CF13B4D5B",
"hash": "0b24b9c1dc9f8f0ddb9ab1c8616f6afbcd6adc20565324687217ca9e2285c6bb"
},
"aarch64_windows": {
"etag": "0x8DE831CE9929F09",
"hash": "1549ddc0f2be394db78723c16e8d0aab7743a836facce99f3d49bbb456335908"
}
},
"1.88": {
"version": "1.88.0"
},
"1.88.0": {
"x86_64_linux_musl": {
"etag": "0x8DE800E2D602906",
"hash": "56ce365705a60b1c31902ae09701824b328d1017e9ffb9192b6cda3f875976ba"
},
"x86_64_macos": {
"etag": "0x8DE800E315DACE5",
"hash": "40c445627634790ea420201fc97a6f197fe22da89a44755ab7cebd9d2ce188b8"
},
"x86_64_windows": {
"etag": "0x8DE800E2BED0491",
"hash": "f631ffc0bfee827cf77b446748e5f5735d7d29f586f08e2dca6062b773e342b6"
},
"aarch64_linux_musl": {
"etag": "0x8DE800E2F5FAD68",
"hash": "cae82081ae65e6dac590f88af37874d4047694256dc660ab4431eb9acd8de75a"
},
"aarch64_macos": {
"etag": "0x8DE800E321D8D23",
"hash": "96034b6efcf21c0ea219380f6360b751d266076fc2701bf14755986594832440"
},
"aarch64_windows": {
"etag": "0x8DE800E2C9BBA09",
"hash": "de1ac59318059c1c93e4d16e6bdf1320dafa82c7e1ab4b5aeef4b9c6d7819d76"
}
},
"1.87": {
"version": "1.87.0"
},
"1.87.0": {
"x86_64_linux_musl": {
"etag": "0x8DE7E7A9ACBD841",
"hash": "9ceba06e52e2b304ab335e834e7a12c4cc6b39e6f338c9b5f3477aae83a0e1da"
},
"x86_64_macos": {
"etag": "0x8DE7E7AA0E98A14",
"hash": "1d7183364a4f982eb75c1a6fe5e012fef84a8c4e0021bf85d3a89e56aebcb119"
},
"x86_64_windows": {
"etag": "0x8DE7E7A98ABAA39",
"hash": "b43a69725f28390701cb8fe4f616ec445ae32c87b1e4f3e804d223d0434ec210"
},
"aarch64_linux_musl": {
"etag": "0x8DE7E7A9E1AA695",
"hash": "c456a613ded7ee467175b6a8b5774c1f9efe1bb415c5d8f48129bec9060de210"
},
"aarch64_macos": {
"etag": "0x8DE7E7AA206B1C8",
"hash": "4dd2b48491e28a1c5732e96d4afd578ab9f907235794e0a88b88ef92df2a6ca0"
},
"aarch64_windows": {
"etag": "0x8DE7E7A99C79AC7",
"hash": "8cd6f2dd61f807da54e7f98b3a8bb6b38ed87663276931ca2cbea55e5b5dc791"
}
},
"1.86": {
"version": "1.86.0"
},
"1.86.0": {
"x86_64_linux_musl": {
"etag": "0x8DE7BB573DBF4A8",
"hash": "b49fe6378aba8a11d1c386bc68a2049f35c319a4dcacbd9cc5475095b9b8beed"
},
"x86_64_macos": {
"etag": "0x8DE7BB577AE2B4F",
"hash": "3a1520f7ace8727a25b048a1207ebf4b1c60aba2e117a7d3ce2daee876a589a3"
},
"x86_64_windows": {
"etag": "0x8DE7BB5727DC7A3",
"hash": "d4a4b97e285e1a3eec2a25b3b455488a75e40a83a43b21a8d13749e7ef24e7f7"
},
"aarch64_linux_musl": {
"etag": "0x8DE7BB575B2E87F",
"hash": "f827399524e0b5f404e35bf244aeb1e2e1d23baa8953e06d319d456e09dedb2e"
},
"aarch64_macos": {
"etag": "0x8DE7BB57853C326",
"hash": "b77afe90337b329c2e0a5cdabe41fad4740435396ef09799b3e55609859d705c"
},
"aarch64_windows": {
"etag": "0x8DE7BB57337E1CC",
"hash": "eade98fbadf0984bd2bc108903bec027354bd3e0e69ac6bc5e4433c25f42ce8e"
}
}
}
-61
View File
@@ -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"
}
}
}
-2751
View File
File diff suppressed because it is too large Load Diff
-225
View File
@@ -1,225 +0,0 @@
{
"rust_crate": null,
"template": {
"x86_64_linux_gnu": {
"url": "https://github.com/aquasecurity/trivy/releases/download/v${version}/trivy_${version}_Linux-64bit.tar.gz",
"bin": "trivy"
},
"x86_64_macos": {
"url": "https://github.com/aquasecurity/trivy/releases/download/v${version}/trivy_${version}_macOS-64bit.tar.gz",
"bin": "trivy"
},
"x86_64_windows": {
"url": "https://github.com/aquasecurity/trivy/releases/download/v${version}/trivy_${version}_windows-64bit.zip",
"bin": "trivy.exe"
},
"aarch64_linux_gnu": {
"url": "https://github.com/aquasecurity/trivy/releases/download/v${version}/trivy_${version}_Linux-ARM64.tar.gz",
"bin": "trivy"
},
"aarch64_macos": {
"url": "https://github.com/aquasecurity/trivy/releases/download/v${version}/trivy_${version}_macOS-ARM64.tar.gz",
"bin": "trivy"
},
"powerpc64le_linux_gnu": {
"url": "https://github.com/aquasecurity/trivy/releases/download/v${version}/trivy_${version}_Linux-PPC64LE.tar.gz",
"bin": "trivy"
},
"s390x_linux_gnu": {
"url": "https://github.com/aquasecurity/trivy/releases/download/v${version}/trivy_${version}_Linux-s390x.tar.gz",
"bin": "trivy"
}
},
"latest": {
"version": "0.71.1"
},
"0.71": {
"version": "0.71.1"
},
"0.71.2": {
"x86_64_linux_gnu": {
"etag": "0x8DECDEEB9FAC982",
"hash": "0510e71e2fd39bf863856d499c8dc19feb4e7336546394c502a8f5cc7ab27460"
},
"x86_64_macos": {
"etag": "0x8DECDEEB7939380",
"hash": "c27bcf4ddd281aecb7267eb5df804ec49ac0f8fa23fe018d33932e17f30a38bf"
},
"x86_64_windows": {
"etag": "0x8DECDEEB76909D8",
"hash": "ea31c2a927382410cfa2b4eb5970aed62308cf28902e1d167ea36bbfa0515095"
},
"aarch64_linux_gnu": {
"etag": "0x8DECDEEB80AED8A",
"hash": "fe1c7106e15a5365d485b098a8c338f91e3b7ba71cb0e4963b98a3a098763cfc"
},
"aarch64_macos": {
"etag": "0x8DECDEEB96021E7",
"hash": "a9f585cad53542a54ef286b5fa4199d081e5a061f8894635bdf3ce2608ece7a9"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DECDEEBADECC64",
"hash": "c5ed00cf9d5b266024c500ddb6a19fa6f75001aa256a1438b2135a21759b0c07"
},
"s390x_linux_gnu": {
"etag": "0x8DECDEEBB3E821A",
"hash": "191a18ec1fd64728f8920490a349152addbb6b3d15e9290e09cac4792a0f4de5"
}
},
"0.71.1": {
"x86_64_linux_gnu": {
"etag": "0x8DECABE3C21C21D",
"hash": "3cbae37cd440cd8676e5ce9207fe460b5641c7579a17e9d00f8894928c41a88d"
},
"x86_64_macos": {
"etag": "0x8DECABE3C1D0C79",
"hash": "de123352f519c6310d5471b5271b029c02b04f3cce33597b87f60064e1760a3f"
},
"x86_64_windows": {
"etag": "0x8DECABE39AC0B35",
"hash": "ba67daf06923f52938812d1af134b3193e22b3bc7a525743b9f2a3ded7ab5904"
},
"aarch64_linux_gnu": {
"etag": "0x8DECABE379A02DE",
"hash": "a7daaee66817d67a4963e8f9ddf15f5238ee021b55d3cd8695b1b7801afd34a7"
},
"aarch64_macos": {
"etag": "0x8DECABE39B07304",
"hash": "5eb3576d4a41c9fa274dc8a62b2e6baebb2bf423eda908ed36d81d574e293c48"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DECABE3777C03C",
"hash": "24142e32e70ad01afa3cfdd758f0bd628ee245cda4a73915fca633d47e42012c"
},
"s390x_linux_gnu": {
"etag": "0x8DECABE37CB8961",
"hash": "52c4003f1aeea6738cda9fb619abbb065d76c3ad367c1bd38d60f27caf156d9d"
}
},
"0.71.0": {
"x86_64_linux_gnu": {
"etag": "0x8DEBFE4888C71CB",
"hash": "30a3d22b23f88c233f1658f562fb477cae3b3e8b4761109d515b7698daf85814"
},
"x86_64_macos": {
"etag": "0x8DEBFE48DF50A78",
"hash": "4558afb13d017615ca85011901caab78b4f09196e320b05a56c9fdc5615a1428"
},
"x86_64_windows": {
"etag": "0x8DEBFE488928575",
"hash": "382250158fb9431ff9b87904205027b066a544234b8952b2dd764bd712d55387"
},
"aarch64_linux_gnu": {
"etag": "0x8DEBFE4886E5D48",
"hash": "2561be394a3199c911f82fced606cbc05e1cb23eb6ce1da6935540adb76f4252"
},
"aarch64_macos": {
"etag": "0x8DEBFE48DF83B37",
"hash": "95d4e896b120816edd0995a2df8adca26a8621b7bf62036a89b1d54a7b718a74"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DEBFE48B3A0EE9",
"hash": "d3604b97aab85aa4f51e86c829b5f28c8c90e6954066705faa973c4ea3ad1874"
},
"s390x_linux_gnu": {
"etag": "0x8DEBFE48B165B6A",
"hash": "f415a9b1429131cb95897bd90f272cee2b76f719ce44f93a7bf4c3b47976c139"
}
},
"0.70": {
"version": "0.70.0"
},
"0.70.0": {
"x86_64_linux_gnu": {
"etag": "0x8DE9C4D820E1C11",
"hash": "8b4376d5d6befe5c24d503f10ff136d9e0c49f9127a4279fd110b727929a5aa9"
},
"x86_64_macos": {
"etag": "0x8DE9C4D845AA570",
"hash": "52d531452b19e7593da29366007d02a810e1e0080d02f9cf6a1afb46c35aaa93"
},
"x86_64_windows": {
"etag": "0x8DE9C4D85B4DEF4",
"hash": "eea5442eab86f9e26cd718d7618d43899e72a83767619e8bee47911bddbfb825"
},
"aarch64_linux_gnu": {
"etag": "0x8DE9C4D829357D2",
"hash": "2f6bb988b553a1bbac6bdd1ce890f5e412439564e17522b88a4541b4f364fc8d"
},
"aarch64_macos": {
"etag": "0x8DE9C4D83C8A6C7",
"hash": "68e543c51dcc96e1c344053a4fde9660cf602c25565d9f09dc17dd41e13b838a"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DE9C4D8582BCCA",
"hash": "ddc8fb59164e16a9973f46b77b7556de2923ac295731910822f0851ec9edfb01"
},
"s390x_linux_gnu": {
"etag": "0x8DE9C4D81CDB213",
"hash": "92ec9caffdcc32d43b76d21d4ecd6ea2975a2b37e050d5f79e17651c490b1753"
}
},
"0.69": {
"version": "0.69.3"
},
"0.69.3": {
"x86_64_linux_gnu": {
"etag": "0x8DE7926D0967A1E",
"hash": "1816b632dfe529869c740c0913e36bd1629cb7688bd5634f4a858c1d57c88b75"
},
"x86_64_macos": {
"etag": "0x8DE7926D3219B32",
"hash": "fec4a9f7569b624dd9d044fca019e5da69e032700edbb1d7318972c448ec2f4e"
},
"x86_64_windows": {
"etag": "0x8DE7926D2485C4C",
"hash": "74362dc711383255308230ecbeb587eb1e4e83a8d332be5b0259afac6e0c2224"
},
"aarch64_linux_gnu": {
"etag": "0x8DE7926D331DC9A",
"hash": "7e3924a974e912e57b4a99f65ece7931f8079584dae12eb7845024f97087bdfd"
},
"aarch64_macos": {
"etag": "0x8DE7926D1E307B1",
"hash": "a2f2179afd4f8bb265ca3c7aefb56a666bc4a9a411663bc0f22c3549fbc643a5"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DE7926D0810E6D",
"hash": "d54b3332b8940cb86d27144399afa3c877b230a4102f2e761cd02f154bca3b3e"
},
"s390x_linux_gnu": {
"etag": "0x8DE7926D09ED52A",
"hash": "4bc2e0f2848c7c1856855d8834d825c9a11b8b13e8726cee346c9fc3dde87e17"
}
},
"0.69.2": {
"x86_64_linux_gnu": {
"etag": "0x8DE77C6B4EC9F34",
"hash": "affa59a1e37d86e4b8ab2cd02f0ab2e63d22f1bf9cf6a7aa326c884e25e26ce3"
},
"x86_64_macos": {
"etag": "0x8DE77C6B3B0EEAA",
"hash": "41f6eac3ebe3a00448a16f08038b55ce769fe2d5128cb0d64bdf282cdad4831a"
},
"x86_64_windows": {
"etag": "0x8DE77C6B4B74C5C",
"hash": "d772fa7c3c1bc52d2914ff78107596fbd20010b5f18bec6f39d63ee3bb31ad45"
},
"aarch64_linux_gnu": {
"etag": "0x8DE77C6B4CABE64",
"hash": "c73b97699c317b0d25532b3f188564b4e29d13d5472ce6f8eb078082546a6481"
},
"aarch64_macos": {
"etag": "0x8DE77C6B60DB9D0",
"hash": "320c0e6af90b5733b9326da0834240e944c6f44091e50019abdf584237ff4d0c"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DE77C6B3B949B2",
"hash": "eeb7839f4f9dc5f5e27aebf33f087efbb917d9f7c3da8cd001c45aebbcc160f2"
},
"s390x_linux_gnu": {
"etag": "0x8DE77C6B3B3F88B",
"hash": "557b9b1ad75e9aa6762f64a338fa7f581f50375e054b946c67361d88b3f762be"
}
}
}
+3 -170
View File
@@ -30,179 +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.11.0"
"version": "1.5.0"
},
"1": {
"version": "1.11.0"
},
"1.11": {
"version": "1.11.0"
},
"1.11.0": {
"x86_64_linux_musl": {
"etag": "0x8DECC561CD26D07",
"hash": "8a046cd55348fb7a6c661b00c625fee1b059f7d09462227ee758c9a502092079"
},
"aarch64_linux_musl": {
"etag": "0x8DECC561B8DF237",
"hash": "350692798cbcda7d307adadcd9b16653bfe679fc0d2974ef25e70465255b7bed"
},
"aarch64_macos": {
"etag": "0x8DECC561B84ADDA",
"hash": "8a42e5d60dbf042f2ae8f8e22b9c15023b98e6fa632b48105186ebbb57b5a906"
}
},
"1.10": {
"version": "1.10.1"
},
"1.10.1": {
"x86_64_linux_musl": {
"etag": "0x8DEB6C8E6D7AF68",
"hash": "b67275c7911233a43ab9094dbbc6d0462ca979275b7c55ea9c19f3ebae80ee46"
},
"aarch64_linux_musl": {
"etag": "0x8DEB6C8E5E92B72",
"hash": "897c374e9e7a33fec2f17acaf1273e77efad424ccef554af36815f6541668f85"
},
"aarch64_macos": {
"etag": "0x8DEB6C8E6062FB9",
"hash": "956f7ef0894cf0836563e71d668b7bdc87e54a9060ef16d11cbf6b5d1dd8109b"
}
},
"1.10.0": {
"x86_64_linux_musl": {
"etag": "0x8DEB5AB99D12858",
"hash": "27df9ab4e121aa4e2f3e8bd698d06b71daa1aa49f88bedcee0e31352699bfdac"
},
"aarch64_linux_musl": {
"etag": "0x8DEB5AB987C193F",
"hash": "d505472836da976aa32a9f3a631177c4364d317cedc5d94080c7986c38de401f"
},
"aarch64_macos": {
"etag": "0x8DEB5AB98B19305",
"hash": "57f8a130f02bd55562004decf6fffb548f3376323889eb2848fa568a706cf7c3"
}
},
"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"
},
+3 -24
View File
@@ -20,33 +20,12 @@
"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.3"
"version": "0.5.2"
},
"0.5": {
"version": "0.5.3"
},
"0.5.3": {
"x86_64_linux_musl": {
"etag": "0x8DEB5FB3BD9F775",
"hash": "dfb86d8e20a3fed91bf549aa450b9d7f46a275b700292e050cdfd3171732e7fd"
},
"x86_64_macos": {
"etag": "0x8DEB5FB27B0F4FB",
"hash": "9b74591168f8dbf19fcdf2386b68031fecc4b847b2e81e2de2d23ed502618875"
},
"x86_64_windows": {
"etag": "0x8DEB5FB66EA9B6F",
"hash": "6bf1019d15e4cfa24d25d3a8571384ba1c703ca58029aac29b7c490f57e3ab85"
},
"aarch64_linux_musl": {
"etag": "0x8DEB5FB325B1A54",
"hash": "428c91cf73fec7494cbefe6e170e12508c9d45d9d096104b7c62d47ff43911c2"
},
"aarch64_macos": {
"etag": "0x8DEB5FB26EDE46D",
"hash": "2aaa197d85eb8c44903f0aa9f571612662e2d5314471697f3adb353e9e2a0007"
}
"version": "0.5.2"
},
"0.5.2": {
"x86_64_linux_musl": {

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