mirror of
https://github.com/taiki-e/install-action
synced 2026-09-07 20:03:26 +00:00
Compare commits
38
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7566428207 | ||
|
|
e24f9d2f1d | ||
|
|
a32489a311 | ||
|
|
85f1221a01 | ||
|
|
378cd7099e | ||
|
|
58a23a132d | ||
|
|
b0451605b9 | ||
|
|
c2f7573e00 | ||
|
|
ff1f1a27bd | ||
|
|
8682898895 | ||
|
|
6c29d3f326 | ||
|
|
1d8976e7a3 | ||
|
|
ac8bd0b28d | ||
|
|
7df7a3a590 | ||
|
|
3a01877a3b | ||
|
|
bf701eabf8 | ||
|
|
7441b14706 | ||
|
|
67ffa5404d | ||
|
|
44e8d07671 | ||
|
|
3196c59c70 | ||
|
|
18a2e880cb | ||
|
|
a30e57accd | ||
|
|
7713cd7b4a | ||
|
|
79f9fd9df5 | ||
|
|
e2ce78fa19 | ||
|
|
67b7c77839 | ||
|
|
89b11c24ae | ||
|
|
409d647a70 | ||
|
|
b1527d67c0 | ||
|
|
212b435433 | ||
|
|
50ac0ac2da | ||
|
|
fc6beaac8f | ||
|
|
012cbaff7f | ||
|
|
517ce9d464 | ||
|
|
732e3fa394 | ||
|
|
9be19a83e8 | ||
|
|
b94661c19b | ||
|
|
2f117b7ec1 |
@@ -1,13 +0,0 @@
|
||||
# Clippy configuration
|
||||
# https://doc.rust-lang.org/nightly/clippy/lint_configuration.html
|
||||
|
||||
allow-private-module-inception = true
|
||||
avoid-breaking-exported-api = false
|
||||
disallowed-names = []
|
||||
disallowed-macros = [
|
||||
{ path = "std::dbg", reason = "it is okay to use during development, but please do not include it in main branch" },
|
||||
]
|
||||
disallowed-methods = [
|
||||
]
|
||||
disallowed-types = [
|
||||
]
|
||||
@@ -1,52 +0,0 @@
|
||||
{
|
||||
"version": "0.2",
|
||||
"gitignoreRoot": ".",
|
||||
"useGitignore": true,
|
||||
"dictionaryDefinitions": [
|
||||
{
|
||||
"name": "organization-dictionary",
|
||||
"path": "https://raw.githubusercontent.com/taiki-e/github-actions/HEAD/.github/.cspell/organization-dictionary.txt",
|
||||
"addWords": true
|
||||
},
|
||||
{
|
||||
"name": "project-dictionary",
|
||||
"path": "./.github/.cspell/project-dictionary.txt",
|
||||
"addWords": true
|
||||
},
|
||||
{
|
||||
"name": "rust-dependencies",
|
||||
"path": "./.github/.cspell/rust-dependencies.txt",
|
||||
"addWords": true
|
||||
}
|
||||
],
|
||||
"dictionaries": [
|
||||
"organization-dictionary",
|
||||
"project-dictionary",
|
||||
"rust-dependencies"
|
||||
],
|
||||
"ignoreRegExpList": [
|
||||
// Copyright notice
|
||||
"Copyright .*",
|
||||
"SPDX-(File|Snippet)CopyrightText: .*",
|
||||
// GHA actions/workflows
|
||||
"uses: .+@[\\w_.-]+",
|
||||
// GHA context (repo name, owner name, etc.)
|
||||
"github.[\\w_.-]+ (=|!)= '[^']+'",
|
||||
// GH username
|
||||
"( |\\[)@[\\w_-]+",
|
||||
// Git config username
|
||||
"git config( --[^ ]+)? user.name .*",
|
||||
// Username in TODO|FIXME comment
|
||||
"(TODO|FIXME)\\([\\w_., -]+\\)",
|
||||
// Cargo.toml authors
|
||||
"authors *= *\\[[^\\]]*\\]",
|
||||
"\"[^\"]* <[\\w_.+-]+@[\\w.-]+>\""
|
||||
],
|
||||
"languageSettings": [
|
||||
{
|
||||
"languageId": ["*"],
|
||||
"dictionaries": ["bash", "cpp-refined", "rust"]
|
||||
}
|
||||
],
|
||||
"ignorePaths": []
|
||||
}
|
||||
-48
@@ -1,48 +0,0 @@
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
|
||||
[advisories]
|
||||
unused-ignored-advisory = "deny"
|
||||
yanked = "deny"
|
||||
unmaintained = "none"
|
||||
unsound = "all"
|
||||
git-fetch-with-cli = true
|
||||
ignore = [
|
||||
]
|
||||
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
|
||||
[bans]
|
||||
multiple-versions = "warn"
|
||||
wildcards = "deny"
|
||||
allow-wildcard-paths = true
|
||||
build.executables = "deny"
|
||||
build.interpreted = "deny"
|
||||
build.include-dependencies = true
|
||||
build.include-workspace = false # covered by tools/tidy.sh
|
||||
build.include-archives = true
|
||||
build.allow-build-scripts = [
|
||||
{ name = "proc-macro2" }, # via serde_derive
|
||||
{ name = "quote" }, # via serde_derive
|
||||
{ name = "semver" },
|
||||
{ name = "serde_core" },
|
||||
{ name = "serde" }, # https://github.com/serde-rs/serde/issues/2972
|
||||
]
|
||||
build.bypass = [
|
||||
]
|
||||
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
|
||||
[licenses]
|
||||
unused-allowed-license = "deny"
|
||||
unused-license-exception = "deny"
|
||||
private.ignore = true
|
||||
allow = [
|
||||
"Apache-2.0",
|
||||
"MIT",
|
||||
"Unicode-3.0", # unicode-ident
|
||||
]
|
||||
|
||||
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
|
||||
[sources]
|
||||
unused-allowed-source = "deny"
|
||||
unknown-registry = "deny"
|
||||
unknown-git = "deny"
|
||||
allow-git = [
|
||||
]
|
||||
@@ -1,24 +0,0 @@
|
||||
# EditorConfig configuration
|
||||
# https://editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.{css,html,json,md,rb,ps1,sh,yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
[*.{js,yml,yaml}]
|
||||
quote_type = single
|
||||
|
||||
[*.sh]
|
||||
# https://google.github.io/styleguide/shellguide.html#s5.3-pipelines
|
||||
binary_next_line = true
|
||||
# https://google.github.io/styleguide/shellguide.html#s5.5-case-statement
|
||||
switch_case_indent = true
|
||||
@@ -1,2 +0,0 @@
|
||||
# Change indent size of shell script files to match scripts in CI config
|
||||
946918579413996845b77e146aa8eb3c6f40f7ab
|
||||
@@ -1,4 +0,0 @@
|
||||
* text=auto eol=lf
|
||||
tools/tidy.sh linguist-detectable=false
|
||||
.github/.cspell/rust-dependencies.txt linguist-generated
|
||||
manifests/** linguist-generated
|
||||
@@ -1,52 +0,0 @@
|
||||
almalinux
|
||||
archlinux
|
||||
binstall
|
||||
callgrind
|
||||
CDPATH
|
||||
convco
|
||||
coreutils
|
||||
covgate
|
||||
cyclonedx
|
||||
cygdrive
|
||||
deadlinks
|
||||
deepsource
|
||||
doas
|
||||
docgarden
|
||||
enablerepo
|
||||
epel
|
||||
espup
|
||||
fastestmirror
|
||||
grcov
|
||||
gungraun
|
||||
insta
|
||||
kache
|
||||
knope
|
||||
LASTEXITCODE
|
||||
leptos
|
||||
libicu
|
||||
linkcheck
|
||||
mdbook
|
||||
microdnf
|
||||
minisig
|
||||
mirrorlist
|
||||
nextest
|
||||
oxfmt
|
||||
pluginconf
|
||||
ppcle
|
||||
prek
|
||||
quickinstall
|
||||
rafn
|
||||
rdme
|
||||
sccache
|
||||
SHASUMS
|
||||
sigstore
|
||||
syft
|
||||
tombi
|
||||
tzst
|
||||
udeps
|
||||
USERPROFILE
|
||||
wasmtime
|
||||
watchexec
|
||||
xbuild
|
||||
xscale
|
||||
xwin
|
||||
@@ -1,6 +0,0 @@
|
||||
# This file is @generated by tidy.sh.
|
||||
# It is not intended for manual editing.
|
||||
|
||||
flate
|
||||
minisign
|
||||
ureq
|
||||
@@ -1 +0,0 @@
|
||||
blank_issues_enabled: true
|
||||
@@ -1,46 +0,0 @@
|
||||
name: New tool suggestion
|
||||
description: Suggest support for a new tool
|
||||
labels: [enhancement]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for a new tool suggestion!
|
||||
|
||||
Normally, you don't need to open an issue to request support for a new tool.
|
||||
Instead, please submit a pull request.
|
||||
(See [DEVELOPMENT.md](https://github.com/taiki-e/install-action/blob/main/DEVELOPMENT.md) for how to add support for a new tool.)
|
||||
|
||||
That said, if you have any questions before getting started, or if you're unable to contribute for any reason, feel free to open an issue.
|
||||
- type: input
|
||||
id: name
|
||||
attributes:
|
||||
label: Tool name
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: pre-built
|
||||
attributes:
|
||||
label: Are official pre-built binaries provided?
|
||||
description: |
|
||||
If "No", this issue will be blocked until official pre-built binaries are provided.<br>
|
||||
If "Unknown", this issue will be blocked until it is determined that it is provided.<br>
|
||||
(When the tool is a Rust crate, it may already be available via fallback even if "No" or "Unknown".)<br>
|
||||
options:
|
||||
- 'Yes'
|
||||
- 'No'
|
||||
- Unknown
|
||||
default: 2
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: url
|
||||
attributes:
|
||||
label: Website or repository link
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: context
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Any additional context that you believe may be relevant.
|
||||
@@ -1,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: []
|
||||
@@ -1,330 +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@dc24bff2366e8ddeea5e0e4168df3d6f4b93f596 # 2026.8.8
|
||||
permissions:
|
||||
security-events: write # for github/codeql-action/*
|
||||
test-manifest-schema:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/rust-test.yml@dc24bff2366e8ddeea5e0e4168df3d6f4b93f596 # 2026.8.8
|
||||
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-26.04
|
||||
- os: ubuntu-26.04-arm
|
||||
- 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, end of LTS
|
||||
- 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' }}
|
||||
container: ${{ matrix.container }}
|
||||
timeout-minutes: 30
|
||||
steps:
|
||||
- name: Install requirements (old Debian)
|
||||
run: |
|
||||
# In Debian, the old repositories is removed from the main mirrors some time after end of LTS.
|
||||
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') || startsWith(matrix.container, 'debian:11')
|
||||
- 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
|
||||
wild-linker
|
||||
- name: Test bash
|
||||
run: cargo-nextest nextest --version && taplo --version
|
||||
shell: bash
|
||||
- name: Test sh
|
||||
run: cargo-nextest nextest --version && taplo --version
|
||||
shell: sh
|
||||
|
||||
test-fallback:
|
||||
needs: tidy
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- fallback: none
|
||||
- fallback: cargo-install
|
||||
- fallback: cargo-binstall
|
||||
- fallback: cargo-binstall
|
||||
version: 0.3
|
||||
runs-on: ubuntu-24.04-arm
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
|
||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||
- run: rm -- Cargo.toml
|
||||
- run: env
|
||||
- uses: ./
|
||||
id: install
|
||||
continue-on-error: ${{ matrix.fallback == 'none' }}
|
||||
with:
|
||||
tool: parse-changelog@${{ matrix.version || '0.4.6' }}
|
||||
fallback: ${{ matrix.fallback }}
|
||||
- run: exit 1
|
||||
if: matrix.fallback == 'none' && steps.install.outcome != 'failure'
|
||||
- name: Test bash
|
||||
run: parse-changelog --version
|
||||
shell: bash
|
||||
if: matrix.fallback != 'none'
|
||||
- name: Test sh
|
||||
run: parse-changelog --version
|
||||
shell: sh
|
||||
if: matrix.fallback != 'none'
|
||||
@@ -1,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@dc24bff2366e8ddeea5e0e4168df3d6f4b93f596 # 2026.8.8
|
||||
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
|
||||
@@ -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@dc24bff2366e8ddeea5e0e4168df3d6f4b93f596 # 2026.8.8
|
||||
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@dc24bff2366e8ddeea5e0e4168df3d6f4b93f596 # 2026.8.8
|
||||
permissions:
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
id-token: write # for rust-lang/crates-io-auth-action
|
||||
attestations: write # unused (used when options for uploading binaries are set)
|
||||
secrets:
|
||||
PUSH_TOKEN_APP_CLIENT_ID: ${{ secrets.PUSH_TOKEN_APP_CLIENT_ID }}
|
||||
PUSH_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PUSH_TOKEN_APP_PRIVATE_KEY }}
|
||||
with:
|
||||
version: ${{ inputs.version }}
|
||||
tag-prefix: install-action-manifest-schema-
|
||||
package: install-action-manifest-schema
|
||||
changelog: tools/manifest-schema/CHANGELOG.md
|
||||
title: $prefix $version
|
||||
prefix: install-action-manifest-schema
|
||||
commit-prefix: 'manifest-schema: '
|
||||
@@ -1,6 +0,0 @@
|
||||
# zizmor configuration
|
||||
# https://docs.zizmor.sh/configuration/
|
||||
|
||||
rules:
|
||||
anonymous-definition: { disable: true } # This is pedantic/auditor only audit and requires explicitly naming each job, but is usually redundant.
|
||||
dependabot-cooldown: { config: { days: 14 } }
|
||||
@@ -1,8 +0,0 @@
|
||||
target
|
||||
Cargo.lock
|
||||
mutants.out*
|
||||
tmp
|
||||
|
||||
# For platform and editor specific settings, it is recommended to add to
|
||||
# a global .gitignore file.
|
||||
# Refs: https://docs.github.com/en/github/using-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer
|
||||
@@ -1,11 +0,0 @@
|
||||
# https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/Rules.md
|
||||
config:
|
||||
line-length: false # MD013
|
||||
no-duplicate-heading: false # MD024
|
||||
no-blanks-blockquote: false # MD028 (this warns valid GFM alerts usage)
|
||||
no-inline-html: false # MD033
|
||||
no-emphasis-as-heading: false # MD036
|
||||
|
||||
# https://github.com/DavidAnson/markdownlint-cli2#markdownlint-cli2jsonc
|
||||
noBanner: true
|
||||
noProgress: true
|
||||
@@ -1 +0,0 @@
|
||||
manifests/*.json
|
||||
@@ -1,34 +0,0 @@
|
||||
# Rustfmt configuration
|
||||
# https://github.com/rust-lang/rustfmt/blob/HEAD/Configurations.md
|
||||
|
||||
# Rustfmt cannot format long lines inside macros, but this option detects this.
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3391)
|
||||
error_on_line_overflow = true
|
||||
|
||||
# Override the default formatting style.
|
||||
# See https://internals.rust-lang.org/t/running-rustfmt-on-rust-lang-rust-and-other-rust-lang-repositories/8732/81.
|
||||
use_small_heuristics = "Max"
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3370)
|
||||
overflow_delimited_expr = true
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/4991).
|
||||
imports_granularity = "Crate"
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/5083).
|
||||
group_imports = "StdExternalCrate"
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/5081).
|
||||
hex_literal_case = "Upper"
|
||||
|
||||
# Apply rustfmt to more places.
|
||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3348).
|
||||
format_code_in_doc_comments = true
|
||||
|
||||
# Automatically fix deprecated style.
|
||||
use_field_init_shorthand = true
|
||||
use_try_shorthand = true
|
||||
|
||||
# Set the default settings again to always apply the proper formatting without
|
||||
# being affected by the editor settings.
|
||||
edition = "2021"
|
||||
style_edition = "2024"
|
||||
hard_tabs = false
|
||||
newline_style = "Unix"
|
||||
tab_spaces = 4
|
||||
@@ -1,38 +0,0 @@
|
||||
# ShellCheck configuration
|
||||
# https://github.com/koalaman/shellcheck/blob/HEAD/shellcheck.1.md#rc-files
|
||||
|
||||
# See also:
|
||||
# https://github.com/koalaman/shellcheck/wiki/Optional
|
||||
# https://google.github.io/styleguide/shellguide.html
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/Directive#external-sources
|
||||
external-sources=true
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2249
|
||||
# enable=add-default-case
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2244
|
||||
enable=avoid-nullary-conditions
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2312
|
||||
# enable=check-extra-masked-returns
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2310
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2311
|
||||
# enable=check-set-e-suppressed
|
||||
|
||||
# enable=check-unassigned-uppercase
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2230
|
||||
enable=deprecate-which
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2248
|
||||
enable=quote-safe-variables
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2292
|
||||
# https://google.github.io/styleguide/shellguide.html#s6.3-tests
|
||||
enable=require-double-brackets
|
||||
|
||||
# https://github.com/koalaman/shellcheck/wiki/SC2250
|
||||
# https://google.github.io/styleguide/shellguide.html#s5.6-variable-expansion
|
||||
enable=require-variable-braces
|
||||
@@ -1,9 +0,0 @@
|
||||
# Taplo configuration
|
||||
# https://taplo.tamasfe.dev/configuration/formatter-options.html
|
||||
|
||||
[formatting]
|
||||
align_comments = false
|
||||
allowed_blank_lines = 1
|
||||
array_auto_collapse = false
|
||||
array_auto_expand = false
|
||||
indent_string = " "
|
||||
-8698
File diff suppressed because it is too large
Load Diff
-54
@@ -1,54 +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
|
||||
assert_is_empty = { level = "allow", priority = 1 } # completely useless in assert_ne case
|
||||
bool_assert_comparison = { level = "allow", priority = 1 }
|
||||
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
|
||||
cast_lossless = { level = "allow", priority = 1 } # suggested code has poor codegen with -C opt-level=0 https://godbolt.org/z/GzTxzbd9q
|
||||
collapsible_match = { level = "allow", priority = 1 }
|
||||
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
|
||||
doc_markdown = { level = "allow", priority = 1 }
|
||||
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
|
||||
incompatible_msrv = { level = "allow", priority = 1 } # buggy: doesn't consider cfg, https://github.com/rust-lang/rust-clippy/issues/12280, https://github.com/rust-lang/rust-clippy/issues/12257#issuecomment-2093667187
|
||||
manual_assert = { level = "allow", priority = 1 }
|
||||
manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395
|
||||
missing_errors_doc = { level = "allow", priority = 1 }
|
||||
module_name_repetitions = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+module_name_repetitions
|
||||
naive_bytecount = { level = "allow", priority = 1 }
|
||||
nonminimal_bool = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool
|
||||
range_plus_one = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+range_plus_one
|
||||
similar_names = { level = "allow", priority = 1 }
|
||||
single_match = { level = "allow", priority = 1 }
|
||||
single_match_else = { level = "allow", priority = 1 }
|
||||
struct_excessive_bools = { level = "allow", priority = 1 }
|
||||
struct_field_names = { level = "allow", priority = 1 }
|
||||
too_many_arguments = { level = "allow", priority = 1 }
|
||||
too_many_lines = { level = "allow", priority = 1 }
|
||||
type_complexity = { level = "allow", priority = 1 }
|
||||
@@ -1,68 +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`.
|
||||
|
||||
If the `Manifest / manifest / gen` job in CI fails due to outdated manifests for other tools,
|
||||
please ignore it and do not modify the manifest for any tools other than the one you are currently
|
||||
working on. That should be handled by the automation, and if everything else passes, your PR is okay.
|
||||
|
||||
## Release new version
|
||||
|
||||
Releases are performed by running the [release workflow](https://github.com/taiki-e/install-action/actions/workflows/release.yml) via workflow dispatch. The owner and collaborators can start the release workflow, but the owner's [approval](https://docs.github.com/en/actions/reference/workflows-and-actions/deployments-and-environments#required-reviewers) is required before the actual release.
|
||||
|
||||
### Minor version vs patch version
|
||||
|
||||
Increase the patch version if only the following changes are included.
|
||||
|
||||
- Update the `@latest` version of the tool.
|
||||
|
||||
Rationale: Normally, tool versions are controlled by the `@<version>` syntax, which is explicitly separated from the versioning of the install-action itself.
|
||||
|
||||
Exception: If the major or minor version of the `cargo-binstall` is updated, the minor version may be increased because the behavior of the fallback may change slightly.
|
||||
|
||||
- Fix regressions or minor bugs.
|
||||
|
||||
Rationale: Semantic Versioning.
|
||||
|
||||
- Improve documentation or diagnostics.
|
||||
|
||||
Rationale: Semantic Versioning.
|
||||
|
||||
Usually increase the minor version otherwise.
|
||||
|
||||
Adding support for a new tool may conflict with existing fallbacks, so it is necessary to increase the minor version.
|
||||
-177
@@ -1,177 +0,0 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
-23
@@ -1,23 +0,0 @@
|
||||
Permission is hereby granted, free of charge, to any
|
||||
person obtaining a copy of this software and associated
|
||||
documentation files (the "Software"), to deal in the
|
||||
Software without restriction, including without
|
||||
limitation the rights to use, copy, modify, merge,
|
||||
publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software
|
||||
is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice
|
||||
shall be included in all copies or substantial portions
|
||||
of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
||||
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
||||
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
||||
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
||||
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
||||
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
@@ -1,204 +0,0 @@
|
||||
<!-- omit in toc -->
|
||||
# install-action
|
||||
|
||||
[](https://github.com/taiki-e/install-action/releases/latest)
|
||||
[](https://github.com/taiki-e/install-action/actions)
|
||||
|
||||
GitHub Action for installing development tools (mainly from GitHub Releases).
|
||||
|
||||
- [Usage](#usage)
|
||||
- [Inputs](#inputs)
|
||||
- [Example workflow](#example-workflow)
|
||||
- [Supported tools](#supported-tools)
|
||||
- [Add support for new tool](#add-support-for-new-tool)
|
||||
- [Security](#security)
|
||||
- [Compatibility](#compatibility)
|
||||
- [Related Projects](#related-projects)
|
||||
- [License](#license)
|
||||
|
||||
## Usage
|
||||
|
||||
### Inputs
|
||||
|
||||
| Name | Required | Description | Type | Default |
|
||||
| ---- | :------: | ----------- | ---- | ------- |
|
||||
| tool | **✓** | Tools to install (whitespace or comma separated list) | String | |
|
||||
| checksum | | Whether to enable checksums (strongly discouraged to disable) | Boolean | `true` |
|
||||
| fallback | | Whether to use fallback (none, cargo-binstall, or cargo-install) | String | `cargo-binstall` |
|
||||
|
||||
### Example workflow
|
||||
|
||||
To install the latest version:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack
|
||||
```
|
||||
|
||||
You can use the shorthand (if you do not need to pin the versions of this action and the installed tool):
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@cargo-hack
|
||||
```
|
||||
|
||||
To install a specific version, use `@version` syntax:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack@0.5.24
|
||||
```
|
||||
|
||||
You can also omit patch version.
|
||||
(You can also omit the minor version if the major version is 1 or greater.)
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack@0.5
|
||||
```
|
||||
|
||||
For some tools, we support installing additional components at the same time by `+<additional>` syntax:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
# Install rust stable with rustfmt component and wasm32-wasip1 target.
|
||||
tool: rust+rustfmt+wasm32-wasip1
|
||||
# When installing another rust version:
|
||||
# tool: rust@nightly + rustfmt + wasm32-wasip1
|
||||
```
|
||||
|
||||
To install multiple tools:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack,cargo-minimal-versions
|
||||
```
|
||||
|
||||
Or:
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@cargo-hack
|
||||
- uses: taiki-e/install-action@cargo-minimal-versions
|
||||
```
|
||||
|
||||
Tool names can also be separated with whitespaces (line, space, tab).
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: |
|
||||
cargo-hack
|
||||
cargo-minimal-versions
|
||||
```
|
||||
|
||||
## Supported tools
|
||||
|
||||
See [TOOLS.md](TOOLS.md) for the list of tools that are installed from manifests managed in this action.
|
||||
|
||||
If a tool not included in the list above is specified, this action uses [cargo-binstall] as a fallback.
|
||||
|
||||
If you want to ensure that fallback is not used, use `fallback: none`.
|
||||
|
||||
```yaml
|
||||
- uses: taiki-e/install-action@v2
|
||||
with:
|
||||
tool: cargo-hack
|
||||
# Possible values:
|
||||
# - none: disable all fallback options
|
||||
# - cargo-binstall (default): use cargo-binstall (includes "quickinstall" and "install from source")
|
||||
# - cargo-install: use `cargo install`
|
||||
fallback: none
|
||||
```
|
||||
|
||||
On platforms where cargo-binstall does not provide prebuilt binaries, cargo-install fallback is used instead of cargo-binstall fallback.
|
||||
|
||||
### Add support for new tool
|
||||
|
||||
See the [development guide](DEVELOPMENT.md) for how to add support for new tool.
|
||||
|
||||
## Security
|
||||
|
||||
The `@v<major>` and `@<tool_name>` tags are updated with each release. If you want to enhance workflow stability and security against supply chain attacks, consider using the `@v<major>.<minor>.<patch>` tag or their hash to pin the version and regularly updating with [dependency cooldown]. Since all releases are immutable, pinning the version in either way should have the same effect. Pinning `@<tool_name>` tags by hash is strongly discouraged, as it causes the workflow to reference a [commit that is not present on the repository](https://docs.zizmor.sh/audits/#impostor-commit) when a new version is released.
|
||||
|
||||
The default fallback (cargo-binstall) is often affected by GitHub's API rate limits, so we [pass the `${{ github.token }}` to cargo-binstall](https://github.com/taiki-e/install-action/issues/561). Disabling the cargo-binstall fallback prevent passing token so helps enhance security.
|
||||
|
||||
See the [Supported tools section](#supported-tools) for how to ensure that fallback is not used.
|
||||
|
||||
<!-- omit in toc -->
|
||||
### Security on installation from GitHub Releases
|
||||
|
||||
**Tools covered in this section:** Tools in the [supported tools list](TOOLS.md) where column "Where will it be installed from" is "GitHub Releases".
|
||||
|
||||
This action will download the tool or its installer from GitHub Releases using HTTPS with tlsv1.2+. This is basically considered to be the same level of security as [the recommended installation of rustup](https://www.rust-lang.org/tools/install).
|
||||
|
||||
Additionally, this action will also verify SHA256 checksums for downloaded files for all tools covered in this section. This is enabled by default and can be disabled by setting the `checksum` input option to `false` (strongly discouraged to disable).
|
||||
|
||||
Additionally, we also verify [artifact attestations](https://docs.github.com/en/actions/concepts/security/artifact-attestations) or signature if the tool publishes artifact attestations or distributes signed archives. Verification is done at the stage of getting the checksum, so disabling the checksum will also disable verification.
|
||||
|
||||
When installing with `taiki-e/install-action@<tool_name>`, `tool: <tool_name>`, or `tool: <tool_name>@<omitted_version>`, The tool version is reflects upstream releases with a delay of one to a few days (as with other common package managers that verify checksums or signatures). A delay of at least one day is known as [dependency cooldown] and is intended to mitigate the risk of supply chain attacks (the specific cooldown period may be changed in the future). You can bypass the cooldown by explicitly specifying a version. If you want a longer cooldown, consider using the property described below.
|
||||
|
||||
When installing with `tool: <tool_name>` or `tool: <tool_name>@<omitted_version>`, the tool version is associated with the install-action version, so pinning install-action version with the `@v<major>.<minor>.<patch>` tag or their hash also pins the version of the tool being installed. This also means that if a [dependency cooldown] applies to the action itself, a cooldown of one to a few days longer will apply to the tools installed by that action.
|
||||
|
||||
[dependency cooldown]: https://blog.yossarian.net/2025/11/21/We-should-all-be-using-dependency-cooldowns
|
||||
|
||||
<!-- omit in toc -->
|
||||
### Security on other installation methods
|
||||
|
||||
See the linked documentation for information on security when installed using [rustup](https://rust-lang.github.io/rustup/security.html), [snap](https://snapcraft.io/docs), or [cargo-binstall](https://github.com/cargo-bins/cargo-binstall#faq).
|
||||
|
||||
If the installation method is rustup and rustup is not yet installed, this action downloads [rustup-init for the current platform](https://rust-lang.github.io/rustup/installation/other.html#manual-installation) using HTTPS with tlsv1.2+, verifies SHA256 checksum, and then installs rustup using it.
|
||||
|
||||
If the installation method is cargo-binstall and cargo-binstall is not yet installed or outdated, this action installs cargo-binstall [from GitHub Releases](#security-on-installation-from-github-releases).
|
||||
|
||||
See the [Supported tools section](#supported-tools) for how to ensure that fallback is not used.
|
||||
|
||||
## Compatibility
|
||||
|
||||
This action has been tested for GitHub-hosted runners (Ubuntu, macOS, Windows) and containers (Ubuntu, Debian, Fedora, CentOS, Alma, openSUSE, Arch, Alpine).
|
||||
|
||||
On Linux, if any required tools are missing, this action will attempt to install them from distro's package manager, so no pre-setup is usually required (except for CentOS or Debian 10 (or older) or very old distro described below, which was already EoL and needs to use vault/archive repos -- see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of setup).
|
||||
|
||||
On other platforms, at least the following tools are required:
|
||||
|
||||
- bash 3.2+
|
||||
- jq 1.3+ (only on non-Windows platforms)
|
||||
- curl 7.34+ (or RHEL7/CentOS7's patched curl 7.29)
|
||||
|
||||
Known environments affected by the above version requirements are CentOS 6 (EoL on 2020-11) using curl 7.19, and Ubuntu 12.04 (EoL on 2017-04) using curl 7.22 (see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of workaround).
|
||||
|
||||
Note that what this action installs for its setup (such as above tools) is considered an implementation detail if they are installed by this action's side, and there is no guarantee that they will be available in subsequent steps, because this action is not an action for installing those tools.
|
||||
|
||||
## Related Projects
|
||||
|
||||
- [cache-cargo-install-action]: GitHub Action for `cargo install` with cache.
|
||||
- [create-gh-release-action]: GitHub Action for creating GitHub Releases based on changelog.
|
||||
- [upload-rust-binary-action]: GitHub Action for building and uploading Rust binary to GitHub Releases.
|
||||
- [setup-cross-toolchain-action]: GitHub Action for setup toolchains for cross compilation and cross testing for Rust.
|
||||
- [checkout-action]: GitHub Action for checking out a repository. (Simplified actions/checkout alternative that does not depend on Node.js.)
|
||||
- [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.
|
||||
@@ -1,122 +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) | |
|
||||
| [**bpf-linker**](https://github.com/aya-rs/bpf-linker) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/aya-rs/bpf-linker/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/aya-rs/bpf-linker/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/aya-rs/bpf-linker/blob/main/LICENSE-MIT) | |
|
||||
| [**cargo-about**](https://github.com/EmbarkStudios/cargo-about) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/EmbarkStudios/cargo-about/releases) | Linux, macOS, Windows | [MIT](https://github.com/EmbarkStudios/cargo-about/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-about/blob/main/LICENSE-APACHE) | |
|
||||
| [**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 | [MIT](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) | `$CARGO_HOME/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) | |
|
||||
| [**d2**](https://github.com/terrastruct/d2) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/terrastruct/d2/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/terrastruct/d2/blob/master/LICENSE.txt) | |
|
||||
| [**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) | |
|
||||
| [**kache**](https://github.com/kunobi-ninja/kache) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/kunobi-ninja/kache/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/kunobi-ninja/kache/blob/main/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) | |
|
||||
| [**protoc-gen-connect-openapi**](https://github.com/sudorandom/protoc-gen-connect-openapi) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/sudorandom/protoc-gen-connect-openapi/releases) | Linux, macOS, Windows | [MIT](https://github.com/sudorandom/protoc-gen-connect-openapi/blob/main/LICENSE) | |
|
||||
| [**rafn**](https://github.com/voron-software/rafn) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/voron-software/rafn/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/voron-software/rafn/blob/HEAD/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) (alias: `typos-cli`) | `$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) | |
|
||||
| [**wild**](https://github.com/wild-linker/wild) (alias: `wild-linker`) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/wild-linker/wild/releases) | Linux | [Apache-2.0](https://github.com/wild-linker/wild/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/wild-linker/wild/blob/main/LICENSE-MIT) | |
|
||||
| [**xbuild**](https://github.com/rust-mobile/xbuild) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-mobile/xbuild/releases) | Linux, macOS, Windows | [Apache-2.0 OR MIT](https://github.com/rust-mobile/xbuild/blob/v0.2.0/xbuild/Cargo.toml#L7) | |
|
||||
| [**xh**](https://github.com/ducaale/xh) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/ducaale/xh/releases) | Linux, macOS, Windows | [MIT](https://github.com/ducaale/xh/blob/master/LICENSE) | |
|
||||
| [**zizmor**](https://github.com/zizmorcore/zizmor) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/zizmorcore/zizmor/releases) | Linux, macOS, Windows | [MIT](https://github.com/zizmorcore/zizmor/blob/main/LICENSE) | |
|
||||
| [**zola**](https://github.com/getzola/zola) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/getzola/zola/releases) | Linux, macOS, Windows | [MIT](https://github.com/getzola/zola/blob/master/LICENSE) | |
|
||||
|
||||
[cargo-binstall]: https://github.com/cargo-bins/cargo-binstall
|
||||
-97
@@ -1,97 +0,0 @@
|
||||
name: Install development tools
|
||||
description: GitHub Action for installing development tools
|
||||
|
||||
inputs:
|
||||
tool:
|
||||
description: Tools to install (whitespace or comma separated list)
|
||||
required: false
|
||||
default: dprint
|
||||
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"
|
||||
},
|
||||
@@ -1,663 +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.12"
|
||||
"version": "2.4.11"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.5.12"
|
||||
},
|
||||
"2.5": {
|
||||
"version": "2.5.12"
|
||||
},
|
||||
"2.5.12": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.12/biome-linux-x64-musl",
|
||||
"etag": "0x8DF098C90103EB2",
|
||||
"hash": "0c4da931bcfd70be34e49aba3296ab0c51d177ae55da67190a4371bd1c89d0ad",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.12/biome-darwin-x64",
|
||||
"etag": "0x8DF098C8F955ACB",
|
||||
"hash": "0680097ec839fadc82451634680e39b9b7e48cc4334ef920525850b4d8f54a8b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.12/biome-win32-x64.exe",
|
||||
"etag": "0x8DF098C901C2DE8",
|
||||
"hash": "59f88d04ab25f8634639c337ef70a79927504b6379a1ec3ff4e87f7c15dd5dce",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.12/biome-linux-arm64-musl",
|
||||
"etag": "0x8DF098C8FE543ED",
|
||||
"hash": "8de4de4b3225f89d5596ccb85a071aac2173d8af2a5f21f2fbc3837e9765d455",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.12/biome-darwin-arm64",
|
||||
"etag": "0x8DF098C8FD85A20",
|
||||
"hash": "0e8d513eb6c612236b47ccf0e218ac3917d863d41f853c65c38410774daa26ed",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.12/biome-win32-arm64.exe",
|
||||
"etag": "0x8DF098C8FD025F9",
|
||||
"hash": "e0148babfa207b79bc9ed50c22479722e314ae07e989c9bdae9611cd3c6511bf",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.11": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.11/biome-linux-x64-musl",
|
||||
"etag": "0x8DF047CB55F6407",
|
||||
"hash": "6ae4389db2e140734af826963e677a6a78dca9690bb089127aef50d8f9edbadb",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.11/biome-darwin-x64",
|
||||
"etag": "0x8DF047CB55190EA",
|
||||
"hash": "74f6d1845e5c1a47ebafd42ba4a90ed174b4bb7a669d70acc1fd925894dbb168",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.11/biome-win32-x64.exe",
|
||||
"etag": "0x8DF047CB59358F9",
|
||||
"hash": "8bdf679275458a444f7befb8dacc38001625645cc498facf3cc114d77239f1cd",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.11/biome-linux-arm64-musl",
|
||||
"etag": "0x8DF047CB5233AEA",
|
||||
"hash": "d279c5e36af85d712a906284af0d2dd43d4baee8a36e2139f072c891fbeacfd9",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.11/biome-darwin-arm64",
|
||||
"etag": "0x8DF047CB5321E4B",
|
||||
"hash": "7a067b00fdf8eeefb7f5f5f247b7dac1bb23adfeaea380a91293353b8e2eba2b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.11/biome-win32-arm64.exe",
|
||||
"etag": "0x8DF047CB543E4BD",
|
||||
"hash": "e7db8b25ed9ddc602d0f0809643a0f1006ae10e67229d5e5de2926085c858b2c",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.10": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.10/biome-linux-x64-musl",
|
||||
"etag": "0x8DEFFAB4E9BDE2B",
|
||||
"hash": "12de42cecdf1c7768a92be2b337605397c48b935ec7abe94b9f258da87836df8",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.10/biome-darwin-x64",
|
||||
"etag": "0x8DEFFAB4E98D458",
|
||||
"hash": "3d87fe407532d708650be535573b159293e5c0176b51f8065eb45cc6e6861f48",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.10/biome-win32-x64.exe",
|
||||
"etag": "0x8DEFFAB4EE7FAF5",
|
||||
"hash": "65125b8689718242c5e86aef43a9099e3313bec2c3fecb7a1bade02018b85acb",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.10/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEFFAB4E6BA4F5",
|
||||
"hash": "42d4eaf1451b77a4c59a9daf6e01a344b47c10fd3849e7dc5e98a3cce6157b17",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.10/biome-darwin-arm64",
|
||||
"etag": "0x8DEFFAB4E5D3636",
|
||||
"hash": "828bc29680765b656b6a354de01d9a7f9f5111e6af99b04cefe06d09c6d2dbda",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.10/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEFFAB4F42D442",
|
||||
"hash": "58707afd02cc8522324e8f83906f44c9a78ceb4953c01e86def94bcd47fed0f9",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.9": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.9/biome-linux-x64-musl",
|
||||
"etag": "0x8DEFCB3BEFC6386",
|
||||
"hash": "593eed8e3db3220cc1be7380e5a001fbeec75d8fe522af472e985da4b4bafde8",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.9/biome-darwin-x64",
|
||||
"etag": "0x8DEFCB3BE6BFE05",
|
||||
"hash": "df2b50ee283634cdd6f7570b7da06bc3c9cd7ec0590ecbbaf986c7590bef3289",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.9/biome-win32-x64.exe",
|
||||
"etag": "0x8DEFCB3BF1243E0",
|
||||
"hash": "f8474a0f9f457df176c10be3f0e82be890e8986ff2805d4a7f3c5a4cba5962ca",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.9/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEFCB3BE877D72",
|
||||
"hash": "37c70ee8614af49c0332930e1190ee59c0a5c5518ef19c6c55ac041c5093f313",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.9/biome-darwin-arm64",
|
||||
"etag": "0x8DEFCB3BE907415",
|
||||
"hash": "7d8b51dec857ffa8aa35ce5eaa3a4476cd62bed013adc2896bf43cac0a67a79b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.9/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEFCB3BEDBF53C",
|
||||
"hash": "d6845ff075043300551d4ad74985814e4e4c56b49ffa87b3724ddf5055a2efe9",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.8/biome-linux-x64-musl",
|
||||
"etag": "0x8DEF785E914AAED",
|
||||
"hash": "365f2aac71051842d65a9d03139dc0f189628a0e8c2dc3aa2ef09a51ef94bcbd",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.8/biome-darwin-x64",
|
||||
"etag": "0x8DEF785ECCB2BE3",
|
||||
"hash": "6bfc751bfff3429888c527d2bb1fe632808769d2f5849579ed8cf71e5fe25c8b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.8/biome-win32-x64.exe",
|
||||
"etag": "0x8DEF785E995E10E",
|
||||
"hash": "80ac9293d359f55e5f75e1dec13c2ec9c28f01e7e8a8e409b0407a1498da006f",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.8/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEF785E9BF7232",
|
||||
"hash": "09d02b9839aa1bf97b65fcce39b561c5687f6521607db46e4bcffdd99a0175a5",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.8/biome-darwin-arm64",
|
||||
"etag": "0x8DEF785E8C6E277",
|
||||
"hash": "04c2d44e61242c8bf56e2d663e5312e78639334b4a2fef84b5f59ac8bc9579fb",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.8/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEF785E93F5B6F",
|
||||
"hash": "ab9026e82f320d47beb1dee6fbacc135f29048a966ed4e902f4e0c830f308c8b",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.7/biome-linux-x64-musl",
|
||||
"etag": "0x8DEF22BBD57EED7",
|
||||
"hash": "4609a493068d7a84c61d01d5ed5ec8cafb805bcc520486be63f0a388bbe3c827",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.7/biome-darwin-x64",
|
||||
"etag": "0x8DEF22BBD33AFEC",
|
||||
"hash": "887431b79e45758e05d94a89111af72b28e5d6545c92480ecac9247d8bacb321",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.7/biome-win32-x64.exe",
|
||||
"etag": "0x8DEF22BBD8388B9",
|
||||
"hash": "62adea0ea523f04cc5c074b2bb00e748b97252023aede03196e1bf4aacf80a9c",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.7/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEF22BBCF2AA58",
|
||||
"hash": "19f095da173fa6e274db4eaba7cdcff61bde32ad368f754b3185c9eabcd67202",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.7/biome-darwin-arm64",
|
||||
"etag": "0x8DEF22BBCFED1A4",
|
||||
"hash": "f71fe80909d2f70f1e051320f5ba9dfd553bc5ef3bacef5cdee1b00ee96a285c",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.7/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEF22BBD6FA1EA",
|
||||
"hash": "655cc1f2ecf3719f79c9def7f2d824bb2a451fcd1d738d43468b12dd66620fd5",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.6/biome-linux-x64-musl",
|
||||
"etag": "0x8DEEC8E534AAD27",
|
||||
"hash": "108f8d177e963fafb684f9b9c96361bc4e137450a97f5b19139d80203ce7d966",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.6/biome-darwin-x64",
|
||||
"etag": "0x8DEEC8E53418F9D",
|
||||
"hash": "02f773b007e5ebe6b40f35e8999bd9c24eaa8dd5231dcab610bc1a17ef17b1b6",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.6/biome-win32-x64.exe",
|
||||
"etag": "0x8DEEC8E53CB5FD7",
|
||||
"hash": "47b7c8f59181870782dbeb26bfa45a51229a277ffd458f5cf852dc96dfd3999c",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.6/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEEC8E563ACC1B",
|
||||
"hash": "35f069cdb2977bcc47fb9e9d71f3e07784dd280772cb9fca23c24c9c228ac7f1",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.6/biome-darwin-arm64",
|
||||
"etag": "0x8DEEC8E5345F77D",
|
||||
"hash": "5dba813a5ee1bd2749b9f3ee020e1f42d3fbd8fda7ed1d5d4df23fdb87e76579",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.6/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEEC8E5372061D",
|
||||
"hash": "2796c61fd757fe2ef760d645b4047746aa40ad543cd712672e6558ce4ff60b88",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.5/biome-linux-x64-musl",
|
||||
"etag": "0x8DEE6FE70A201CC",
|
||||
"hash": "549fea27c74212aaeb2c737346028facbcca7a93f66cf4aa145388dd8b18d7bc",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.5/biome-darwin-x64",
|
||||
"etag": "0x8DEE6FE709C89B5",
|
||||
"hash": "81f7f09a1ffacd225a65a29e2506ad02013b95964e684554cc5cc7ae9db005b4",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.5/biome-win32-x64.exe",
|
||||
"etag": "0x8DEE6FE7134893A",
|
||||
"hash": "f24c77f79d02dff42bfa4ee62e31b0522754d87eaaa3202435c7126cdb30ebd2",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.5/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEE6FE709ED119",
|
||||
"hash": "0f487c28eca2c87e0eb79b73ad84c9fc0bbab6a6cf3513f5fedbc74ef2ca2d0b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.5/biome-darwin-arm64",
|
||||
"etag": "0x8DEE6FE70857234",
|
||||
"hash": "6072d68d3a4faf74c2802c106654904f2052f85675a3d1632213dd977a4b64bb",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.5/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEE6FE70F54252",
|
||||
"hash": "cc5db4b08a70bf6d9bd3f7ebe36f7abfa382b48071d9dbe34389133d375195e2",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.4/biome-linux-x64-musl",
|
||||
"etag": "0x8DEE226F47DC1AF",
|
||||
"hash": "e5601b0963d66cb24e1bcc975189ea0acd17b59815e8d48a2da88817f8b7652b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.4/biome-darwin-x64",
|
||||
"etag": "0x8DEE226F4881651",
|
||||
"hash": "b3dfae5422dbd86272bb8ed40afec66670ea7754531d8fbcbae7e445e5430387",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.4/biome-win32-x64.exe",
|
||||
"etag": "0x8DEE226F49AC5F8",
|
||||
"hash": "49d1ef3925d31b2f08c00b76786621bf4603fdb4c3bfeff1aa2cd4d98de3a27c",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.4/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEE226F439DE83",
|
||||
"hash": "49c602aded99121c5c7f4ff227eca3b359d86931fbffba8c270067043a9873cf",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.4/biome-darwin-arm64",
|
||||
"etag": "0x8DEE226F46D8052",
|
||||
"hash": "1250bb41a0409cf6c3133fc47819237eb61251624297f87158d2bed3ec123c3c",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.4/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEE226F4C85967",
|
||||
"hash": "95bf56ccd99e090adf43127328e456b63422eb201471746b1d21c7aa33349005",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.3/biome-linux-x64-musl",
|
||||
"etag": "0x8DEDCC90DE3B687",
|
||||
"hash": "03cf125720b1d791093c9c68be34875d08638c314b3e1e63db1a45f2b418b1ca",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.3/biome-darwin-x64",
|
||||
"etag": "0x8DEDCC90DB49E32",
|
||||
"hash": "4df90556830ed35e6238e4b976b942d369a5378447c8d68b260b7a38e08b26f9",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.3/biome-win32-x64.exe",
|
||||
"etag": "0x8DEDCC90E14A193",
|
||||
"hash": "04c9ca46af43a0d060b22b21f94c7e1a9e8c57963a09778b8ff1d808ed536b31",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.3/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEDCC90D587619",
|
||||
"hash": "1a69ea4eb55baaec0bedd7d6ada3b1e626e2b430ecfc9a8f1b90373ca78aeb70",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.3/biome-darwin-arm64",
|
||||
"etag": "0x8DEDCC90DAAE52A",
|
||||
"hash": "610d3e1e770d373368d4ccee5a19c5e1735b0235024fcbed6ae07eb080d3bb09",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.3/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEDCC90E02B45E",
|
||||
"hash": "62db4103a4aeb03de3fc1ddcd21194767298133ce874ee9ca40ca85d4fe2f05e",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.2/biome-linux-x64-musl",
|
||||
"etag": "0x8DED75C14E43700",
|
||||
"hash": "8d8fa918571533d5d9ceb8c6ed14c5af71fece9a2c05e7c5cb7a5e8ab654389d",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.2/biome-darwin-x64",
|
||||
"etag": "0x8DED75C14D5A179",
|
||||
"hash": "e5a8da8fdd6dd8f47027f7a914568d0aa71728b77ed5e9bc909c00afc344f3bf",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.2/biome-win32-x64.exe",
|
||||
"etag": "0x8DED75C15BBAED7",
|
||||
"hash": "04a054ca18527404fce4e7a7aa8b882616ecc1a4afa74cfad0cb54a4b165dfb2",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.2/biome-linux-arm64-musl",
|
||||
"etag": "0x8DED75C14E87801",
|
||||
"hash": "442b33293e55f452e74e854b50da96b5616bd655dad71bbd1674bc4c876fde13",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.2/biome-darwin-arm64",
|
||||
"etag": "0x8DED75C14D9E265",
|
||||
"hash": "6289b71d281928926a50136f555f0b36b84c1fbdd5090f86f47c98abb2e74128",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.2/biome-win32-arm64.exe",
|
||||
"etag": "0x8DED75C14F4ED0D",
|
||||
"hash": "89e9220ded685420b1ae650fd4aedeb0e97d221e13480f7a4f50f2b04cbcbe1c",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.5.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.1/biome-linux-x64-musl",
|
||||
"etag": "0x8DED0FC290EC5AC",
|
||||
"hash": "5cbcad4b0d118b6a39ed41c8a883d8a395d2bc23501309fd57057fefee96211d",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.1/biome-darwin-x64",
|
||||
"etag": "0x8DED0FC28E6D11D",
|
||||
"hash": "44cce7ced9643d03f0855ace64a32e7830af0eff0cf20677fc48a308db9a8c5e",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.1/biome-win32-x64.exe",
|
||||
"etag": "0x8DED0FC290D19BF",
|
||||
"hash": "c176d3309e744c4f0d4f36c6c5a9bcd316ca977f48b874f777cd4223aa23d5ae",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.1/biome-linux-arm64-musl",
|
||||
"etag": "0x8DED0FC2870AB9A",
|
||||
"hash": "80a47021d9c8cc02c3a612ac2b012e0451143c90ba563c906b7dbb4261eaf55a",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.1/biome-darwin-arm64",
|
||||
"etag": "0x8DED0FC288A3155",
|
||||
"hash": "08fd07b53503fc433586eecb4eeb92491dba0b31dea0aa7dc158a935734a1c4c",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.5.1/biome-win32-arm64.exe",
|
||||
"etag": "0x8DED0FC28BA202F",
|
||||
"hash": "ef3b9b65c08d84701970f70fb67e20901c5e4da39b5b9cd2eea7c194c51addac",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"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,37 +26,12 @@
|
||||
"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.5"
|
||||
"version": "0.7.4"
|
||||
},
|
||||
"0.7": {
|
||||
"version": "0.7.5"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
"version": "0.7.4"
|
||||
},
|
||||
"0.7.4": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -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.22.0"
|
||||
"version": "1.18.1"
|
||||
},
|
||||
"1.22.0": {
|
||||
"1.18.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF00617118DE7C",
|
||||
"hash": "df2921254924066627685ee09f6c8b9acd7acef68a338668f879d2b033c09458"
|
||||
"etag": "0x8DE9959D5E8FE78",
|
||||
"hash": "cf2a4b54494ea8555d6349685e9a301efc1051d9fba6308c76914b2486f8700f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF006175FD0505",
|
||||
"hash": "88f4459e166c50ece5f240934197ef60b88d12a7b459cb4cea15ab0b7d5dc123"
|
||||
"etag": "0x8DE9959DBCBBA2C",
|
||||
"hash": "e06370bec7143668653bb7c09d0b8b689fc703dd4fa58ec5847c4b571d8a490d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0061744C7BDA",
|
||||
"hash": "0950f5a9f3422f74dea181d11f8b4d4447d1e9d1a9fdadcb72ff5b0b63c95207"
|
||||
"etag": "0x8DE9959D9E5BCF3",
|
||||
"hash": "89706aa5215c164d8d091597a470fee72308ac87e8553af395ea77db844a888c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF00617E66C172",
|
||||
"hash": "2fdf0ad20ffc7c7f94f32c19566f417d227484ff0335664d5df429e459d1354b"
|
||||
"etag": "0x8DE9959E60E685D",
|
||||
"hash": "c55962a0115f9716b709216de7f8bdd59d6ba8738779e60b051b4593f677717a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF0061851E8228",
|
||||
"hash": "c364fd10e494b4fc0cc88a89995446364379a914930f0b0182b1151ad27690a1"
|
||||
"etag": "0x8DE9959ED2C11A4",
|
||||
"hash": "955abf167994c90f3547e233edace4c0f794465dd4aa408249b38999aa5ca3cf"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF00618301D0B2",
|
||||
"hash": "3aebb3854efc319ab09c01b6dc8b17c568e8a90417f0878608b71fdafc8a437c"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DF006179170F59",
|
||||
"hash": "ce9c82bd710607b3ece0613a8216e18ab8830580ec9182402143dd916701c630"
|
||||
"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"
|
||||
},
|
||||
@@ -6,38 +6,15 @@
|
||||
"bin": "usr/bin/cargo-deb"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/kornelski/cargo-deb/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.8.0"
|
||||
"version": "3.6.3"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.8.0"
|
||||
},
|
||||
"3.8": {
|
||||
"version": "3.8.0"
|
||||
},
|
||||
"3.8.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DF0876908E85D5",
|
||||
"hash": "c6bd0a4affaa232814cc615b2597457f1d44fdfe1c8ebd643f3a491a1f244040"
|
||||
}
|
||||
},
|
||||
"3.7": {
|
||||
"version": "3.7.0"
|
||||
},
|
||||
"3.7.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA87CE0C3370E",
|
||||
"hash": "e61273031c84b6ef2ca3fb259b594d34d2b592e1c6bc378c1249380c53e5b05e"
|
||||
}
|
||||
"version": "3.6.3"
|
||||
},
|
||||
"3.6": {
|
||||
"version": "3.6.4"
|
||||
},
|
||||
"3.6.4": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA528E26D5EF0",
|
||||
"hash": "3a95dff12baba70efe3a050a3ad94149ace73114c5af988d34073183e09dd584"
|
||||
}
|
||||
"version": "3.6.3"
|
||||
},
|
||||
"3.6.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
@@ -22,168 +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.20.2"
|
||||
},
|
||||
"0.20": {
|
||||
"version": "0.20.2"
|
||||
},
|
||||
"0.20.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEDDE403C76D46",
|
||||
"hash": "9f12ed4c49936e09b48bf862b595cde2fe64fcbd9d74dfacac6131ca824c8d5f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEDDE40A5B7920",
|
||||
"hash": "248da7f581724e470071990c088ffc55c811981715f4cbdb258621fb79f8b7a6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEDDE42D104FBD",
|
||||
"hash": "975a22143262fd27476d19ee00c7af67978426e40e1dee94eed6bbade1cf87dc"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEDDE40A025BC6",
|
||||
"hash": "995c82be0defc7a025cae49a2aa2644ce8245c9a3318fc4103907c6a285e8c7d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEDDE3EA943AD1",
|
||||
"hash": "fe67d82a10d8597a3549364cb733a3f9cc1bfff9031b7ae46384a9f2a72090c3"
|
||||
}
|
||||
"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,31 +10,12 @@
|
||||
"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.6"
|
||||
"version": "0.8.4"
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.6"
|
||||
},
|
||||
"0.8.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFDFBCA275B3D",
|
||||
"hash": "39e5574a2838bf4b8e956ea797d5804e6dc31363d9cf00a6864eed55bd57f28a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEFDFBDC6C2AB9",
|
||||
"hash": "e3c90822aa51676f26ddba764fd2a421798afd61d6fdd04852ddb4e53e06b875"
|
||||
}
|
||||
},
|
||||
"0.8.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE0C0EB12EEA7",
|
||||
"hash": "047d106c63f2192ee87e9d84c32eb2a7be879647de1959674fec8d6f3eb579c2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE0C10DF82204",
|
||||
"hash": "12a10b4880bbf146073dedb36a6b926d554c744cffa9432f00f95d1e035d9991"
|
||||
}
|
||||
"version": "0.8.4"
|
||||
},
|
||||
"0.8.4": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -22,6 +22,7 @@
|
||||
"bin": "cargo-export-v${version}-aarch64-apple-darwin/bin/cargo-export"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/bazhenov/cargo-export/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.2.5"
|
||||
},
|
||||
@@ -1,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,36 +18,15 @@
|
||||
"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.2"
|
||||
"version": "1.9.1"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.9.2"
|
||||
"version": "1.9.1"
|
||||
},
|
||||
"1.9": {
|
||||
"version": "1.9.2"
|
||||
},
|
||||
"1.9.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFFCE53C96516",
|
||||
"hash": "b5c258c424ebaef39541c3641f33c51137ee6c426016f365628fedb2c737271d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEFFCE54DB5971",
|
||||
"hash": "fac46c099aa1427a0f596846b10a7b6345dff8661ca22e10448925cc63e91091"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEFFCE55CC74B1",
|
||||
"hash": "0ab876271d6283548f6d31f2f748e4c27c78802d4650b93d5f465b81e07e1332"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFFCE56ECDC82",
|
||||
"hash": "c3fd0a352bb439e4e84a09e5361ea333f7cdc58b0894105e93a33c43b867bc2d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFFCE57B706FE",
|
||||
"hash": "6c3eac6957c2acdc0bcded6451ccecf6083f116e71d0f7f2b525866e3bcc1083"
|
||||
}
|
||||
"version": "1.9.1"
|
||||
},
|
||||
"1.9.1": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -29,166 +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.9.0"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.0"
|
||||
},
|
||||
"0.9.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF0C3301E18345",
|
||||
"hash": "3fca950394a3c49457657c158b1619cec8dfd2647ae5b48746734c0ab969a522"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF0C3300461515",
|
||||
"hash": "ddf949b82a63017441ea76aa068bdd7e2dde8055f47cd3ef736fdbbd633bc33e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0C332CF823A0",
|
||||
"hash": "15eefd5b90fcdd4006b727c6e710d70a61aff509fcd7bb37f9c2a35c4f024948"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF0C330869E424",
|
||||
"hash": "49c0085628392a8d727c4464d91ec417c613c5015f5197cd16d5c05aa3fb5ad1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF0C330BD9CE84",
|
||||
"hash": "7e821a6c90c0884f79f759f5d9be50799ade67bb82515186d922f26032ef43b8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF0C33266DD47C",
|
||||
"hash": "a827e57b93feab3d81ceb24c0602a1b778d6be72231ca83adaec909c1af0f7ef"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DF0C33068B143C",
|
||||
"hash": "3c337dd495e2b3040f49dc320a10ebf59bae76c7a583646d75934a841709204d"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DF0C3307978D7B",
|
||||
"hash": "ddbe3f0012053b20f1922d4b2ac3c81536585a4031f67477e5fa65eb7af493e2"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DF0C330F5A5C74",
|
||||
"hash": "fb9ae81ea57fa452dedeb37e565fd30493719ce204466b7bdd25c258b5212d47"
|
||||
}
|
||||
},
|
||||
"0.9.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFBD376FBF96B",
|
||||
"hash": "bc2122fd7bd9b6d3eb371690ed085f82e5a8bf1851f4645ef521d12ed04b2616"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEFBD377DAEFA5",
|
||||
"hash": "4595bc9310b009913570514eb0ff7c3aba74902562578038f1700d611783fdc2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEFBD3A85D99F3",
|
||||
"hash": "49494b25effe07cc15d22b7f791cd874f8f789d96cdb4e395b06bfcdfa77f852"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFBD37CCF6E9D",
|
||||
"hash": "3c299780e109d59fd77044e64734421d43c0067b92937a49be302fee66d04727"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFBD36F99B30E",
|
||||
"hash": "1bbf5dc8ad82e0f6ff0eb923aa6a691c760adb60f797cdcb454e204b9399c4f0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEFBD39F825761",
|
||||
"hash": "da8f270851522e23e01285f99cae30d85050a215929697619ac17b73d20212db"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEFBD3714871A5",
|
||||
"hash": "863b57e44296be8439ba1aff4fa89bd431d69c4b84fe296c6a2cffbc8f00872e"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEFBD3776AD196",
|
||||
"hash": "df15e4606a881df90dbc5ced491989708f45d47f752fc27c7fe9de920e885a74"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEFBD389B1AD72",
|
||||
"hash": "6cc5d89bf1961e570959e909e43b7d3a91ceb6111065b6719839549c04f69f24"
|
||||
}
|
||||
"version": "0.8.5"
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.7"
|
||||
},
|
||||
"0.8.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB08B2B1E1C29",
|
||||
"hash": "967b5cc996c29d8baa52bbb4595ef1f53af35255af8e2036ddbc6468d7b523c7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB08B20CA17C7",
|
||||
"hash": "288ce0cb976207a9a1ad5af4d7ec9a06c9af116727066fb2287df8d9d1026be9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB08BA5F00B0A",
|
||||
"hash": "56bce7aef6bf906af0fe025d2459f8be483d65ed4c105760671f9c92449c966d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB08B27EEC151",
|
||||
"hash": "b7bb2ad514166f3b19fc06874c577eefde0010e5ac571f9ae33ff45cd19a4785"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB08B18434DF2",
|
||||
"hash": "3efee732ed7e9a653e20d96c930e0ec799901289cce90f46bb20f627e2c0d2e9"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB08B50DAB377",
|
||||
"hash": "1f49a2f9e9c475c2587933b96572a5e5cc06a8a84560cdb60b21315868e576b7"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEB08B2B8DC570",
|
||||
"hash": "d2f1678408ccb5345bea02f8e1adc5aed38eb2fee27ee5752ccc3e3fa7e3e596"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEB08B2D556124",
|
||||
"hash": "d27f1cdb7d292f64214ecd9384fa87702f6e11c0c0f558f1b8f8d61bb6552ee2"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEB08B2BDFA7FB",
|
||||
"hash": "f65da6f59bc5091b223b82638b6333e14228cec59a3bde8e9f09f698d0dcdeb9"
|
||||
}
|
||||
},
|
||||
"0.8.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEAD9DFC629D58",
|
||||
"hash": "15db93baf9410ed9dd01b89b9cc1d98cdc86bb381bc3ca77ba256f6cc6bf8852"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEAD9DEFD2B9FE",
|
||||
"hash": "5f92be8cff2016e5435b876a29e15f726a803701b4fab5fc7d295b94cd954afa"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEAD9E249616EC",
|
||||
"hash": "9e254799deddb5b8c99d0bb1785674891e06eb432c63deb2ae113ccd67f06e4d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEAD9DFB03ACB9",
|
||||
"hash": "b3ad4cceb5a4cc2450c30f16a9fe86d0e673c311e3b807590b38b25b8a2eaf77"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEAD9DF69D79EF",
|
||||
"hash": "ef9e27aa59bfbe2c3006b8ad3dc8c64aee7b704a6c9236c3bcf711ec47c6c42d"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEAD9E22BC8D0D",
|
||||
"hash": "2379527cd030cb0b99841fefc0a249e19bb614681a01e46c9759afba6f0b4ff2"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEAD9DFE216AD4",
|
||||
"hash": "5db10c4fcd4452dd544f0efc546c5d52d83e7d1c079d3a458aca414a70c44d88"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEAD9DF80B4E05",
|
||||
"hash": "ed2a13d217eb9c26d1c197460826b17a94ac234d87345b73d3096ac5caa1531f"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEAD9E0CABCE5C",
|
||||
"hash": "4a4fbf602624866c511f35cdf443bf8c631efd1de31694aea592e6b69fca1b8f"
|
||||
}
|
||||
"version": "0.8.5"
|
||||
},
|
||||
"0.8.5": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -1,43 +1,12 @@
|
||||
{
|
||||
"rust_crate": "cargo-machete",
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
|
||||
"latest": {
|
||||
"version": "0.9.2"
|
||||
"version": "0.9.1"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.2"
|
||||
},
|
||||
"0.9.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE9B0EC4E4A16A",
|
||||
"hash": "48200087f54c55aabcd4db4af1e25742b49846c02a1b1bfa134711945b35b2e9",
|
||||
"bin": "cargo-machete-v0.9.2-x86_64-unknown-linux-musl/cargo-machete"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE9B0EC263ACC1",
|
||||
"hash": "3e8cb936c9b820f84d047a2b5be8b229b2be67bf2467014885376a6faffdcac3",
|
||||
"bin": "cargo-machete-v0.9.2-x86_64-apple-darwin/cargo-machete"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-x86_64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DE9B0EDA735250",
|
||||
"hash": "996120ac70afe405c58fce508a476f25bb71032c6fb8013aa0123bba36429c76",
|
||||
"bin": "cargo-machete-v0.9.2-x86_64-pc-windows-msvc/cargo-machete.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-aarch64-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DE9B0EB0A844A7",
|
||||
"hash": "6f96c3e6026a5bdd241b6ae600c6fb86c9197c6e189a894f91371baa01fd10f5",
|
||||
"bin": "cargo-machete-v0.9.2-aarch64-unknown-linux-gnu/cargo-machete"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.9.2/cargo-machete-v0.9.2-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE9B0EC004E6C0",
|
||||
"hash": "63e28fee386d82d33f2d12406c857f98e2d4697f3f7df7f71f34dff07fca0fde",
|
||||
"bin": "cargo-machete-v0.9.2-aarch64-apple-darwin/cargo-machete"
|
||||
}
|
||||
"version": "0.9.1"
|
||||
},
|
||||
"0.9.1": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -18,6 +18,7 @@
|
||||
"bin": "cargo-make-v${version}-aarch64-apple-darwin/cargo-make"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.37.24"
|
||||
},
|
||||
@@ -29,6 +29,7 @@
|
||||
"url": "https://github.com/taiki-e/cargo-minimal-versions/releases/download/v${version}/cargo-minimal-versions-s390x-unknown-linux-gnu.tar.gz"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-minimal-versions/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-minimal-versions/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.1.37"
|
||||
},
|
||||
@@ -22,146 +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.5.3"
|
||||
},
|
||||
"0.5": {
|
||||
"version": "0.5.3"
|
||||
},
|
||||
"0.5.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEEDB40EF969EE",
|
||||
"hash": "b299169fb9f86f65cfc2c7404c4df8c7c65439f1967a07929c5469d6b4bfe6a3"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEEDB408CCC8A5",
|
||||
"hash": "ab3585e2a941521a87fa94616c8bc17952ee9110a135b86ecb6b0bf2fe99a508"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEEDB441A1EFB8",
|
||||
"hash": "da566e3ba65cab99dcb668501bd2623e0a1079808dc83549c1a37e31c1d7dfc7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEEDB4012D30B7",
|
||||
"hash": "8d7d915eafa367641705f2a5196ba49e6ad0ca42952c8de8798c091b55854ce3"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEEDB4385FC5AE",
|
||||
"hash": "94da0a395f30c280cb00820a38c66e8fbb9e98858b33a001b8c15ae58c1d3752"
|
||||
}
|
||||
},
|
||||
"0.5.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE827E2943079",
|
||||
"hash": "f88ff5cadd2a9e1ffa2033389cd309274968ff941921813a15ac53bfb1600f45"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE827E4F3EF35",
|
||||
"hash": "cc0bb1b8b80f5f6d53500690f0eb636a38eb350f3de1734b2cd48a6c1bfd67b9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE82834A9D521",
|
||||
"hash": "8a7b6f058c96fb93840959669def36371f5e186ca6b5b34db4c6dcb9a41a5340"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE827D3818C1C",
|
||||
"hash": "55f2001c58bc4e3968401dec427b3ca74efa217a19a77f343b3d9cc4f95d0eeb"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE827D39AC41E",
|
||||
"hash": "2e1bd16aef04d657d9044445b021bd776e42bfb123c52798687a59c160b1f52f"
|
||||
}
|
||||
},
|
||||
"0.5.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE7EBE2909C25",
|
||||
"hash": "c76befca9be5386f3c410d3c8d13084ef40b772a4abac7840ea337343493fecd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE7EC0859C8B5",
|
||||
"hash": "4458175124f6b2900c5506c05f1b417f4f6a7132c5eca48e72de8da23ced05d7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE7EC34514C55",
|
||||
"hash": "caab82da04283da24fd882f4e87851790366f9fe7a2d32546f005927a98ed689"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE7EBC961C9C4",
|
||||
"hash": "a2b134879d2c581269cffff8a77e507e3175f0603b1505134b3f7c41b6175ed9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE7EBE70E6498",
|
||||
"hash": "d1859eb6d5358275ae86d1715a9e00a36c8cc6512533dcac2969537b0bfb330e"
|
||||
}
|
||||
},
|
||||
"0.5.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE65F4AEFA49A",
|
||||
"hash": "488410fadeb95d0fa6da6edeaa5318a9dffc47953500a7720c6ba3481075c236"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE65F65045501",
|
||||
"hash": "6bfaee7aa6ba381de54b7ed589bad9629a0213e45a8919bb2281a7d8860b6bc4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE65F97B6D6E6",
|
||||
"hash": "6d9b3665d41fab3b6d661ba41580b870e40be626d484d3bb4adcf7f513188b15"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE65F365F5A18",
|
||||
"hash": "a99922d5e4b2bfcc2e9fad0963342639d54b3f25b163ffa7e382ef6f1470b983"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE65F472266B6",
|
||||
"hash": "8dda259a137a3c5c22e0052355fff56a63c9bbd6beadbc5a260d922dabaf8321"
|
||||
}
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.1"
|
||||
},
|
||||
"0.4.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEDE5FD7915858",
|
||||
"hash": "8f38fc6bfcb02bffe99d9a0dd06e6dc71a00cf668e4ad8e959170a5e748d3220"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEDE5FEA052EF8",
|
||||
"hash": "2fd521952adc481e8cdd98950a990b4016e7469a09cf9b7207c1864b192bff33"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEDE602EB312A3",
|
||||
"hash": "73e14755ba657eafed5f21aba51532c75f8bbfab1c9f3a2adc512524dc46e4d5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEDE5FFF969E66",
|
||||
"hash": "c059a33a82cba0b0fa7424912abf468b157fbbdc93595ec4054c5fae1f716586"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEDE5FBF799444",
|
||||
"hash": "1f16fb4ba6413295483f4a45aafcfb7905dc27918401d4a91f2fdcb6d92d5636"
|
||||
}
|
||||
},
|
||||
"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,326 +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.143"
|
||||
"version": "0.9.132"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.143"
|
||||
},
|
||||
"0.9.143": {
|
||||
"previous_stable_version": "0.9.142",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEF2769404E4E5",
|
||||
"hash": "66786b9abe23920d022a182d1416b1bbc8130dd4872a9553d76985a1708dcd1e"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF276BE9E7497",
|
||||
"hash": "6d891c18105ec2d33f6e441a4f92b7ccab47ba263e22055c8bb66884243f3389"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF2772C2F6971",
|
||||
"hash": "4830d430411148d17602a75cc880bfb4dc8dac153dea59a48a2ef4cc93577f07"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF27731DD95DF",
|
||||
"hash": "c42a1dbde532da06dc9b4a43d44fd0ce668b836c2ab7388410f10ff9834476a2"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEF2767EF67E22",
|
||||
"hash": "2a64b3566a92508550a7ab29c3e8db25472ca37730ecb4d22100b6aa440c2a68"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF276A9312E41",
|
||||
"hash": "0560ce0ce017f368c54b5db86588370fc03b470985490fa81200e62a657dda05"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF277455FEA99",
|
||||
"hash": "c89ca8168a6cb1aff6e38b3551bedc9b924477aa983d947b99038c5bed6438ba"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEF276A9B559BF",
|
||||
"hash": "cb5035deced2353e6e03a8408dd7cddaa82ddf0a22238566254617f59f25cb42"
|
||||
}
|
||||
},
|
||||
"0.9.142": {
|
||||
"previous_stable_version": "0.9.141",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEF273B894B8CA",
|
||||
"hash": "c3f0910754172aa74ec39e6bc361284e370b34de457afa580ffb7de40e5946a0"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF273C3DA2F24",
|
||||
"hash": "92295e2b10c42590cc3aeacafe4567f8296a0903786afdbd525237690094de18"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF27479071211",
|
||||
"hash": "7a829c9e440512495e4695cd373ab07a8bef2aa4e9db131fcf7b70e1a1659523"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF274485A1CF3",
|
||||
"hash": "d07491b05d27ba3bd5fd7fef72a20096200a8db860081c6e8ccfddcdbc04f2f6"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEF273893F2A57",
|
||||
"hash": "7ca37916d0e03c21b7c5667029f16b144e118555bae2bb3607ecd5f0776a5ad2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF273C5E06686",
|
||||
"hash": "a24f797388edf66dee8cc40d5d4622f561976b70d779326b3adbef1ef374ae39"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF27494452D73",
|
||||
"hash": "db237c8ea80e07b4a787c37842823d15ef501b0f17e81972905abef6cb809b3c"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEF273B0A60872",
|
||||
"hash": "3a0d01473f58aaca581f6ed6bfbd798da7cac1fdfc7543541a530055ac97aca1"
|
||||
}
|
||||
},
|
||||
"0.9.141": {
|
||||
"previous_stable_version": "0.9.140",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEF270A9526938",
|
||||
"hash": "4140166be58c2a928b4fb7c014c112a9c0039be375f86b7ebf4c72495a2c1c4d"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF27066533FAE",
|
||||
"hash": "030e10c2a2e5723f8013f7f2e793683b42a9de12d1593520dd3abe1628b6b7a8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF2706DCC7607",
|
||||
"hash": "c26f26f8b2d61aa07dc8d65e0cea073781e23da0c5d9e7f93dbd627d0a5a5fb9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF2713D261407",
|
||||
"hash": "83917f801d65f4af44c45a3abfa20e0f338fee37dfcf7df0a35c367f2ebba0cb"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEF2708C2D09FB",
|
||||
"hash": "cd7b362b682550e7a1caf10faf03f9429f72ced8fdd4adf67ff00f2bf01a5104"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF270AF1B680B",
|
||||
"hash": "d9719ce9b45706834df6fc38b7fca1bf0733b9ad9a0a9fe3ffd60ea8fbd37400"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF27125B50293",
|
||||
"hash": "8ca784e044c76e461ab01fe6213913608698e903b13deb4d36aab77378c570e5"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEF270900C4B34",
|
||||
"hash": "0db7899e5e277643b0f4eedc7cee53fd49b59d14d1c9f2b07b81d41c25915ad1"
|
||||
}
|
||||
},
|
||||
"0.9.140": {
|
||||
"previous_stable_version": "0.9.138",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEDAE20FD2B5D3",
|
||||
"hash": "4ee9aaa0d0171a985a5d0eb735b87355894c1c455972e9674fb9fdbd1387c9a3"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEDAE10D8F601F",
|
||||
"hash": "bc2a998567816eef7b087b920036f49fb89aa2a8a603f6a3d84098be160b62c5"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEDAE1662F99AB",
|
||||
"hash": "58e0a722f9444078fab447783f322acf15a2a771ba785b3fbbe8bacda31c3df9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEDAE29E830A10",
|
||||
"hash": "b75c287b89df1fbfe033a98df058a94cd1f5119dab6ff56e4916e5a1597c7ac9"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEDAE070F15BD8",
|
||||
"hash": "8b3f4d4560b6b0f83774fecc6be07e47716dbad0eb0bb6c3890f478f4affe4b6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEDAE087846D07",
|
||||
"hash": "81fe08bda065ae74fa9092c444d797c31e12c245080bfb9f4dc207e21def4b98"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEDAE2BA1E5EB4",
|
||||
"hash": "c1d88ca5dfa07367399e64be499ad867f62f29958156b356d54bef05581bfc1b"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEDAE128F2A033",
|
||||
"hash": "912c6bb01aa081c4dba1a264828c5b300a3f4e8ffd70565dbd6b8693829beaba"
|
||||
}
|
||||
},
|
||||
"0.9.138": {
|
||||
"previous_stable_version": "0.9.137",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DECFDF4C0E2AAB",
|
||||
"hash": "3793bf0c27607b196f502c39b2108f571de89fcda7586ae6beefa11ee177b216"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DECFE04DD83A8E",
|
||||
"hash": "8e4183e39b857350b928e053b40ffc7180c01e7cbf4d13146e5d8a12ec210f4f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DECFDF9705AE29",
|
||||
"hash": "124baa34d160355fa8a8bed053856270cfcf132659e76a0bc8bbcdfc093266b7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DECFE2302C64D8",
|
||||
"hash": "e4606198dd067299f16863dcf5b9be007b9cae041e468c417884fc224760c0f4"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DECFE0178A31D1",
|
||||
"hash": "e1c85dbe02dcf5b963803b3f96f4f561757f5c37cab68c932411dea20d57284e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DECFE0396C8F80",
|
||||
"hash": "3eff5e9d9e8a4560c46db64608b0ffff88372199db82aa87ff202e767713c807"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DECFE19740231C",
|
||||
"hash": "e4d5595674916267278a0ac821b221c977faa4416f122f004fae41ae1ac2f2ac"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DECFE055EBF42A",
|
||||
"hash": "3298f6d9820a43c08343063baec382f0bcb98d8f8d2f7cacf51466e344fbe33f"
|
||||
}
|
||||
},
|
||||
"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,133 +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": "2.2.2"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.2.2"
|
||||
},
|
||||
"2.2": {
|
||||
"version": "2.2.2"
|
||||
},
|
||||
"2.2.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.2/cargo-rdme_v2.2.2_x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DF0445CC7C75B1",
|
||||
"hash": "6f9f3a1ab1507cc00629bb25a23b2ef0fbcec168869a63222cffdf9989c37eb0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.2/cargo-rdme_v2.2.2_x86_64-pc-windows-gnu.zip",
|
||||
"etag": "0x8DF044607618495",
|
||||
"hash": "1325d3399d5d5087b0b928b5a583aa5576cfdcf58826068cf29b06d6c3eaf323"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.2/cargo-rdme_v2.2.2_aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DF0445A48C6B6B",
|
||||
"hash": "9fc3ea23ef3b9275824e30d0ccebc3495d72115281efc8fd58ec6bd198755d3c"
|
||||
}
|
||||
},
|
||||
"2.2.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.1/cargo-rdme_v2.2.1_x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEF7B2F6F9E079",
|
||||
"hash": "fe2cec43c68e75678bef3301248e626b0e283714b147e362ec1964e747ddf666"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.1/cargo-rdme_v2.2.1_x86_64-pc-windows-gnu.zip",
|
||||
"etag": "0x8DEF7B32480A9A9",
|
||||
"hash": "271255cc0c82385420e35569deab8aed64c3d11877c934678e45fac567319608"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.1/cargo-rdme_v2.2.1_aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEF7B2CCA9B60D",
|
||||
"hash": "98fcc30599938f16873e2ff21ad962ac7ed7827a760cf1392da3a25939c79d59"
|
||||
}
|
||||
},
|
||||
"2.2.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.0/cargo-rdme_v2.2.0_x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEF341570A63BA",
|
||||
"hash": "55c25072979fdcc00c3ed0ce73376e0a233e1558064c8c5196cb9325b0509993"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.0/cargo-rdme_v2.2.0_x86_64-pc-windows-gnu.zip",
|
||||
"etag": "0x8DEF3418DF2C5E2",
|
||||
"hash": "f3fc5a504157512dec78dee04ea5e8deb29ebded9f538f29209e1aed7c50c78e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.2.0/cargo-rdme_v2.2.0_aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEF34138CF8979",
|
||||
"hash": "cd026583eef0b37c79f7f164a1d8f1ed01a9257bf38c5e6db4a9247fcad23301"
|
||||
}
|
||||
},
|
||||
"2.1": {
|
||||
"version": "2.1.0"
|
||||
},
|
||||
"2.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.1.0/cargo-rdme_v2.1.0_x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DED2145AC74ADE",
|
||||
"hash": "fce279da7bf388590ce70df8eae55f17803e649998271ab0b06632d6721ee91a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.1.0/cargo-rdme_v2.1.0_x86_64-pc-windows-gnu.zip",
|
||||
"etag": "0x8DED214862A1114",
|
||||
"hash": "f8bd5f067655e049fb54130a688feabf310fe4a75972058400b82ec42c6f347e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.1.0/cargo-rdme_v2.1.0_aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DED21443CA541A",
|
||||
"hash": "6b8cca19c533f7eb5d486c9e38445fc03363cb524585804d5614db20f2909e86"
|
||||
}
|
||||
},
|
||||
"2.0": {
|
||||
"version": "2.0.1"
|
||||
},
|
||||
"2.0.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.0.1/cargo-rdme_v2.0.1_x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DED0984EFA079A",
|
||||
"hash": "037abe5c85d969f63572f686fb06166c94c7997b496918693c9b79be6aae3497"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.0.1/cargo-rdme_v2.0.1_x86_64-pc-windows-gnu.zip",
|
||||
"etag": "0x8DED0987BE63E14",
|
||||
"hash": "9edc2cba15abeeafd1f0e2461f9079454b4d2042469f61ceb9a5532873509c06"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.0.1/cargo-rdme_v2.0.1_aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DED0983154167C",
|
||||
"hash": "190cc1c68d8bea1eb223bb8433d032ffe768afe05bc342fdaa41725b05b836c8"
|
||||
}
|
||||
},
|
||||
"2.0.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.0.0/cargo-rdme_v2.0.0_x86_64-unknown-linux-musl.tar.bz2",
|
||||
"etag": "0x8DECF33F9639E39",
|
||||
"hash": "658007bb3d501a4c53e681e0d135c19924ac0c88b225d581932de8206705f177"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/orium/cargo-rdme/releases/download/v2.0.0/cargo-rdme_v2.0.0_x86_64-pc-windows-gnu.zip",
|
||||
"etag": "0x8DECF33F6C000F7",
|
||||
"hash": "9d4e75c9f325859fca8c0c74a6f823526fdc2fb123d38cf071c2875957769d96"
|
||||
}
|
||||
"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,83 +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.50.0"
|
||||
},
|
||||
"0.50": {
|
||||
"version": "0.50.0"
|
||||
},
|
||||
"0.50.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEEFEF92C0AFA9",
|
||||
"hash": "5763f6f62310f76428ba19d42cac060c56e07a1b8e3be0394c8c686398978f48"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEEFEF7BBD8FF5",
|
||||
"hash": "e320f7368a3d37a96d6509c0d5dd1d69bde4e8ef5fcb76d60b5a5a0ae4b755be"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEEFF03860112F",
|
||||
"hash": "82df31e99ea91f73c2906b50ba6c09e82556a5fb1cc936021929d5f0dd948548"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEEFEF8C52FA7C",
|
||||
"hash": "3c44160c3fdd93f72d2f5c84774c370a63e09d0d17ae0cdcc3dde346f30a1348"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEEFEF9D88D204",
|
||||
"hash": "f99f928d67501c29e8410026f27a54cf799fb13611c3b4a6a58f2772cf7e3799"
|
||||
}
|
||||
},
|
||||
"0.49": {
|
||||
"version": "0.49.0"
|
||||
},
|
||||
"0.49.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE4F1675E65A5",
|
||||
"hash": "f25b4fcf842fc8a18fd6f1d9475513dc74ef2c9df201252b9b9d2f6edb6ab6a2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE4F14C3064B9",
|
||||
"hash": "408321772da3b0f71e8e8a810f6fe7a6191a77c6810f51f619683d2de191096d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE4F214BFCEA3",
|
||||
"hash": "73982a766c9f30901f52e3c0017495652e3b5705fb6759011acddfa06692f4fd"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE4F17240A463",
|
||||
"hash": "240d383fb005203755a0c7b76810858fecc72d71ad729ce88198a069d1c8de54"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE4F14291B7D6",
|
||||
"hash": "8f25d7d3b563d8d94c50c0698be901692fb56724ff40a79711a25b7889769cdd"
|
||||
}
|
||||
},
|
||||
"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,173 +26,12 @@
|
||||
"bin": "cargo-shear.exe"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/Boshen/cargo-shear/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.13.4"
|
||||
"version": "1.11.2"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.13.4"
|
||||
},
|
||||
"1.13": {
|
||||
"version": "1.13.4"
|
||||
},
|
||||
"1.13.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF7C2EFAC9C84",
|
||||
"hash": "eb0efdfb7bd95433b5e8b9d0759a7463a30ada2bf9d54a386e2ba7d74b533d09"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF7C2EF13B2C3",
|
||||
"hash": "1a81e2b597dd605f4b44463240c6b04cbd8a6c3943a0ca35fe99294880272205"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF7C2EF0591DA",
|
||||
"hash": "ddde7c21e9ba3a03ccb1a444459bc9dc1ea06a1271fdb234e79791d0f12462bf"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF7C2EEABA213",
|
||||
"hash": "e314880d8d29bc41613f5921e3d121763c5abf049c393c1b41d6065ef7d88a05"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF7C2EED2864E",
|
||||
"hash": "bcc3d2f1a7a1efb77335664d5f1f9ee51f902123f40fb47d919cc6fd6fce90e6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF7C2EEB07E95",
|
||||
"hash": "364820b8d2b448b9b2a400cf52a704bd859cd80fbd0364f2c15d1c1ed3db50cb"
|
||||
}
|
||||
},
|
||||
"1.13.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEEA2A2552C84D",
|
||||
"hash": "21ba04662e0eaa6059ca7e1adf48f3bdf1c6656b613b926f3bda0dc6f5b38f82"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEEA2A2503061E",
|
||||
"hash": "9b8c7fb634b15c81a2e1dbf3fff0b47d129789046a68afd4f4cc59f1236b779a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEEA2A25041660",
|
||||
"hash": "46d372dd60bb636d92072db222fd59bec90af64282ab4926ad3c43be94b97fc6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEEA2A24BDBF78",
|
||||
"hash": "189c2f1974d677951c8990716624fdabd31bf9dc342f2f1cb7785f89c78c3ab3"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEEA2A24B607B4",
|
||||
"hash": "601b5647782f4ebcf78e5ba761fa2454060491f927faf41515c0b87906353a5d"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEEA2A24CE9C72",
|
||||
"hash": "ee733ccc311d6a0778e0f56492fc0db4c5a7ac520c13f7ee4f5f001f3cd1ee7a"
|
||||
}
|
||||
},
|
||||
"1.13.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE33B5890FBEE",
|
||||
"hash": "bcd4fbb656a7d74d37fc00c4ef0cd5085595931b0caaf082315d9f9836cff222"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE33B58326776",
|
||||
"hash": "4f43cbdf330a23425e203777496369104e4ee3ef510488eada6bc237cbfd39db"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE33B5830E292",
|
||||
"hash": "6ce6e6870b5c07b087fbf8e63c13ef1d964c292c2b55973bd6b181ae11f5e600"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE33B57C8AD25",
|
||||
"hash": "ff6f96de8202f9f2d9ea83b222d2d97cf7777b1a180f63a084736246e233d3d5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE33B57CA0B32",
|
||||
"hash": "27f76f85ba083c0fdf7911e24deabc62315e4f7056c402e4155028511a6019f6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEE33B57D2D884",
|
||||
"hash": "7e3f48a5f7a413a0780f759e22088b0d77267b3db0c3bb973387ec5c628022dd"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
@@ -14,28 +14,15 @@
|
||||
"url": "https://github.com/DevinR528/cargo-sort/releases/download/v${version}/cargo-sort-aarch64-apple-darwin.tar.gz"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/DevinR528/cargo-sort/blob/v1.0.9/Cargo.toml#L5)",
|
||||
"latest": {
|
||||
"version": "2.1.4"
|
||||
"version": "2.1.3"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.1.4"
|
||||
"version": "2.1.3"
|
||||
},
|
||||
"2.1": {
|
||||
"version": "2.1.4"
|
||||
},
|
||||
"2.1.4": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA2B427453DC9",
|
||||
"hash": "c10fdf954e51221d63743884aaf6ee5d576464abdc4965b395e3ec26948072ee"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA2B44F072C94",
|
||||
"hash": "0c59ef2433e523e060909cdfa678969eaa81a44fdc4313cb5a1a9592e8ded2b3"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA2B420DAFA52",
|
||||
"hash": "d2091a14be8482d8771ac379ef46a9501d678cee000a5e855490009fad3a65a3"
|
||||
}
|
||||
"version": "2.1.3"
|
||||
},
|
||||
"2.1.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"rust_crate": "cargo-spellcheck",
|
||||
"template": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-unknown-linux-gnu"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-pc-windows-gnu.exe"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[LGPLv2.1](https://github.com/drahnr/cargo-spellcheck/blob/master/LICENSE-LGPL)",
|
||||
"latest": {
|
||||
"version": "0.15.1"
|
||||
},
|
||||
"0.15": {
|
||||
"version": "0.15.1"
|
||||
},
|
||||
"0.15.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DD4A85530EF13A",
|
||||
"hash": "9b36eb04e83aaea2c943064fbb2e5a04d37a46bcf51dfd99495b74b09ff56455"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD4A8564500872",
|
||||
"hash": "5d70eac68be1dae5fb69439217581f79e642867ddd4b67ba258e224de6ff82a2"
|
||||
}
|
||||
},
|
||||
"0.15.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DD49AEF852F898",
|
||||
"hash": "b96e4e73babd959aa138d1629b143180e83ebd8461064fa68e99e2e961560029"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD49AF09E6176C",
|
||||
"hash": "53e697b1016880ffe864dfba9fda68c050694644267557450881d52d9eed987d"
|
||||
}
|
||||
},
|
||||
"0.14": {
|
||||
"version": "0.14.0"
|
||||
},
|
||||
"0.14.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DC6466EF3038F3",
|
||||
"hash": "6f35073843f2eb87990ef19c841c61ded5263e3a7ff38f885cfab22193b84f13"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC646705A424A4",
|
||||
"hash": "ad97a1471b7e718902ec385c3ad045a6afbc986f736d0c4986855ec99a79c80c"
|
||||
}
|
||||
},
|
||||
"0.13": {
|
||||
"version": "0.13.2"
|
||||
},
|
||||
"0.13.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DC0E0760B5DD94",
|
||||
"hash": "f547b8f992dcc43f8a4106bae8b090ecb3fcb7ef6ce336081c22636f70e876d9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC0E07751C8D13",
|
||||
"hash": "f54fb8243497258115d1eb55b99bfc94ab3e09636c78665d3b6410885ba9190a"
|
||||
}
|
||||
},
|
||||
"0.13.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DBC987279A3734",
|
||||
"hash": "17af34dbefad5c45d23df3e4e81b0addc78782db0ed2e8e491a1532761463e1e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DBC9875250341E",
|
||||
"hash": "d18c19a3c5e7eb9ea516e691b54a4517a60517b6b1fb75b7f56a0c1dcc9b177e"
|
||||
}
|
||||
},
|
||||
"0.13.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DB98F2A6C10BCB",
|
||||
"hash": "41e99240e55f38cc6d43d7ea9f2ccd448f584eefdc262129e4238f057d995923"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DB98F240CB78CC",
|
||||
"hash": "57d45d5942d7ccd49599aae549c0bd5d906868eaeb39481088e55001d65f4784"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -17,171 +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.37.2"
|
||||
},
|
||||
"0.37": {
|
||||
"version": "0.37.2"
|
||||
},
|
||||
"0.37.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFABB38B2EE49",
|
||||
"hash": "837dc54d21da101e96e888c6f6680d25f3c06554b0614880ea385cdf68cd5173"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEFABAB9ED3427",
|
||||
"hash": "ce1acc986b42ae8d94725d0889529807a213e7bb0cd1b8b8bdf08f6b2e7ee110"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEFABB0A0D3757",
|
||||
"hash": "1aec8ee50c532ae432ef510c24839b4206757317cb802e0b810c52abfb5ba9dd"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFABAB5F83B79",
|
||||
"hash": "f94bfd24784134d03b61872d0f52f192325a9a2b0511d09fab37acb84e65a603"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFABAB81FF2BD",
|
||||
"hash": "d7c19e5d1c45d0a2c6ae22ce7a59e747999e583095806ec02b92bfea66f15eaa"
|
||||
}
|
||||
},
|
||||
"0.37.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF6B822774704",
|
||||
"hash": "566cf089b157f547aaf7fcd0ff9cad9951abef39f55d146da2596f4b523b6a5f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF6B79D710B0C",
|
||||
"hash": "459c78e8bc5ea9a675c82e1cdc3eaad4e9dd5e76f17c75e6660efe5ec56e9f7e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF6B822E21D93",
|
||||
"hash": "9f7b6eaed8c6366c163abd5927a8f057ef81fab7df721b02a8e0a8623a68352f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF6B7C104F634",
|
||||
"hash": "82de9090cba572a3cbb69321c8eef7065d5dc55dbe16ed8ef8223c989cda71f1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF6B7AADA3855",
|
||||
"hash": "ce7980d8ac630d36cd72fbfad0faa71adab6133ba318572117636c0ff7265311"
|
||||
}
|
||||
},
|
||||
"0.37.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED9C43198D8FC",
|
||||
"hash": "c7a5f7d273154e15047684aea0482d1bf37998edc7a1bc0dd9ade0a446b9cfd8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED9C3F37D200E",
|
||||
"hash": "ebc03b4d2729a6c5148c455b1f8e3904c63e10abf815ff2c02f967ad4811a21a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED9C43B951CFE",
|
||||
"hash": "0bf42f8c064716f12e96553e70d7724110d6c6e97b332a37d1ce77f3ad2aae27"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED9C45524A092",
|
||||
"hash": "00f0f0c3a64b86ca48ebb13ddccb25b85676fb30ed3d5156e4db7e9aa1bf3837"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED9C3F869CE4A",
|
||||
"hash": "a44f2b8a7e3eca54bb2beaaeb71fca93b40b4a97ce9bcabadcee8f61289fea0e"
|
||||
}
|
||||
},
|
||||
"0.36": {
|
||||
"version": "0.36.0"
|
||||
},
|
||||
"0.36.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED5C2DB60E0AF",
|
||||
"hash": "61ffa2a1268b013bdd422c28394f37533d0349b4bbb604b3d5a3cc9a4d808bbd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED5C309348785",
|
||||
"hash": "6423a6be52879fe94bb82b7cd2ce71d31e0a280dd12a435026de995d601a33a7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED5C2F6099061",
|
||||
"hash": "6d83385a668c0080043cb2288c4278a2a79650684d7a33c124e25602a24eb1e7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED5C3050CA04B",
|
||||
"hash": "c65628d3180cbe33683d1971d10b6723b1b496dc90a0292aeccdfddd731191a1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED5C3006AFA8A",
|
||||
"hash": "b6674ed02a076b03b30e42cfd650f1d470d37803a36ab7f64caf0ab46eec5ec4"
|
||||
}
|
||||
"version": "0.35.2"
|
||||
},
|
||||
"0.35": {
|
||||
"version": "0.35.5"
|
||||
},
|
||||
"0.35.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DECEEC9FDB3845",
|
||||
"hash": "72a42010d4910a3479d2f5499b2f5ee3620184e1a5be32c0455c9219b36af45a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DECEEC7F130DF0",
|
||||
"hash": "17f40f8c6be1a5df1d6e92c26fafdd9e57397c5a658a66cfd850e2b2ba567cef"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DECEECB9087D5E",
|
||||
"hash": "4e1005efd2c219178d1eb637099aa682f4de078d71b5223ecb97359226d0af85"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DECEECA6EFA180",
|
||||
"hash": "1ad666d372d372d393e355a2d14b178190ffdbb2e702ce3ee3abdc120b8f9164"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DECEEC706A54C3",
|
||||
"hash": "a8742b7fd11a87318dfd7afa2f337553cab8cae47f085ab7a46536c226cbdd51"
|
||||
}
|
||||
},
|
||||
"0.35.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA2A058109F8F",
|
||||
"hash": "bc60f0668389edd48b112c4ecc7374d3180f522cf933b7fcb3486a447f24aef8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA29FED382280",
|
||||
"hash": "a48eb40fc541a440ac0e62a22bfb7984819a1409591b4ce7e20d3d1a01625e96"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA29FE6F1DA8E",
|
||||
"hash": "6d51cfca33da65079392c55b2506705f8dcf518337a9a68f619d4de14c5aa5e6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA29FD9717357",
|
||||
"hash": "0ca28350061a6b3f4e40685472434ba56082de992022b667ec7fdb5433f186c6"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA2A01A31E15B",
|
||||
"hash": "fd4433bd3d5e930cda6571b2b2cded2d859ee8cb10bc72245201bada707999b8"
|
||||
}
|
||||
},
|
||||
"0.35.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA298DDF784C5",
|
||||
"hash": "1728506eff323e9e6908fa4de88f931f4c52a46f4bdb87a768bab819ae3a1ee0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA2985EB8F923",
|
||||
"hash": "f1373a539becba1604f12b10fafd42ec3818b30075696f6785b1c880f1d44222"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA2985F93E3F9",
|
||||
"hash": "728df0c01ed906a66df6da57d52b4427e3fe52e0684ec8d1ce6d353b48bf8a69"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA298D6C6614C",
|
||||
"hash": "34843dd46fdf13988bfdfa9021a91e942b00ddbe38277a45cbcc70eade8655b0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA29889111947",
|
||||
"hash": "6bcc479f1dd38e191dd50fb4da7d6b11de158c7bb5cbe084407aca003c34d9d5"
|
||||
}
|
||||
"version": "0.35.2"
|
||||
},
|
||||
"0.35.2": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -1,49 +1,12 @@
|
||||
{
|
||||
"rust_crate": "cargo-udeps",
|
||||
"template": null,
|
||||
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.1.61"
|
||||
"version": "0.1.60"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.61"
|
||||
},
|
||||
"0.1.61": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEA584E93B9FDB",
|
||||
"hash": "27031ca3902390a1d793901d17ec073ac85297ab3477b13faea984e4c97de479",
|
||||
"bin": "cargo-udeps-v0.1.61-x86_64-unknown-linux-musl/cargo-udeps"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEA584FB3914CC",
|
||||
"hash": "0840c47e3ac640db8cf1ac9136c7a133eff68f07753a8a450363b95124d0ee34",
|
||||
"bin": "cargo-udeps-v0.1.61-x86_64-apple-darwin/cargo-udeps"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEA5855ED09C2C",
|
||||
"hash": "6920b6f493f0c13a28e32522ccb7efffcc57c8849d887366b19c599dc2238cc0",
|
||||
"bin": "cargo-udeps-v0.1.61-x86_64-pc-windows-msvc/cargo-udeps.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEA584C0D0F4DF",
|
||||
"hash": "d257553c03b36d2ee7e8028d622c80b1244fc512fabb2de058c1e0ceeb92169b",
|
||||
"bin": "cargo-udeps-v0.1.61-aarch64-unknown-linux-musl/cargo-udeps"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEA5849C45DEF1",
|
||||
"hash": "0ca49f226c268ff3f7d65e82dd471900b962e4dcb3e75793558e5f4287be2011",
|
||||
"bin": "cargo-udeps-v0.1.61-aarch64-apple-darwin/cargo-udeps"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.61/cargo-udeps-v0.1.61-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEA585933B8EBC",
|
||||
"hash": "56f71b63e24fff67cf5f34e21bf4bcd8b090d80336a629c7b829045b02494718",
|
||||
"bin": "cargo-udeps-v0.1.61-aarch64-pc-windows-msvc/cargo-udeps.exe"
|
||||
}
|
||||
"version": "0.1.60"
|
||||
},
|
||||
"0.1.60": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -11,6 +11,7 @@
|
||||
"url": "https://github.com/jfrimmel/cargo-valgrind/releases/download/${version}/cargo-valgrind-${version}-x86_64-pc-windows-msvc.zip"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "2.4.1"
|
||||
},
|
||||
@@ -14,68 +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.1"
|
||||
},
|
||||
"0.23": {
|
||||
"version": "0.23.1"
|
||||
},
|
||||
"0.23.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF92D9D906974",
|
||||
"hash": "c492c6dfb7e5ac0eee586b796e0fc950ba13077e7f0bbb046f445d71790d5360"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF92D120AA051",
|
||||
"hash": "1d74345d23ec744728124a0244696e9f21340fbb4b8a59cc1e39ba4ab18d8113"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF92DC60EE69A",
|
||||
"hash": "114534c57cdcca604f59c9d70024583d20ff7c5505677f06247e971184a23872"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF92DBC103E82",
|
||||
"hash": "dc0a0fb28fdd90405f69e7365bce91d2504ea7491eb4d79d5655ffa106358925"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
@@ -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,146 +1,9 @@
|
||||
{
|
||||
"rust_crate": "coreutils",
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/uutils/coreutils/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.11.0"
|
||||
},
|
||||
"0.11": {
|
||||
"version": "0.11.0"
|
||||
},
|
||||
"0.11.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.11.0/coreutils-0.11.0-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DF06ED03068ABA",
|
||||
"hash": "ac8e24885abf9062b80e8e86990d5727c186939c02fee777b1723e5c85293ca9",
|
||||
"bin": "coreutils-0.11.0-x86_64-unknown-linux-musl/coreutils"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.11.0/coreutils-0.11.0-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DF074ED501323A",
|
||||
"hash": "75e3f1fe855beae6c4bd6f2f8c6306bc0fec5102d6aedb2d539fd9a025c889a8",
|
||||
"bin": "coreutils-0.11.0-x86_64-apple-darwin/coreutils"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.11.0/coreutils-0.11.0-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF06EC278C5927",
|
||||
"hash": "622e4a764332edbe8b4f6d9500938e649857a20a9a7f7d4fea0487d479eb9b9e",
|
||||
"bin": "coreutils-0.11.0-x86_64-pc-windows-msvc/coreutils.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.11.0/coreutils-0.11.0-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DF06EC1BF3B7FA",
|
||||
"hash": "99405c97458c4b10382d8570108519188b5410a0e0e380c74b77ca7bf7efd322",
|
||||
"bin": "coreutils-0.11.0-aarch64-unknown-linux-musl/coreutils"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.11.0/coreutils-0.11.0-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DF06F70C8D2FDF",
|
||||
"hash": "9001127a01891f6e32547a72c0e27156d686310b0b42fdf23da567288666abb5",
|
||||
"bin": "coreutils-0.11.0-aarch64-apple-darwin/coreutils"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.11.0/coreutils-0.11.0-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF06E4FBD69E20",
|
||||
"hash": "6441a8326c8c210acffa23231b5b61c65a0f3bfe4d9ec45009c21cba6689ab31",
|
||||
"bin": "coreutils-0.11.0-aarch64-pc-windows-msvc/coreutils.exe"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.11.0/coreutils-0.11.0-riscv64gc-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DF06EC338DA988",
|
||||
"hash": "b86683c3e86439323ea6924ff328a445a1139707fbb4bbba9eb58c6351326815",
|
||||
"bin": "coreutils-0.11.0-riscv64gc-unknown-linux-musl/coreutils"
|
||||
}
|
||||
},
|
||||
"0.10": {
|
||||
"version": "0.10.0"
|
||||
},
|
||||
"0.10.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.10.0/coreutils-0.10.0-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEF33667E8A36A",
|
||||
"hash": "adc1f8b15b58ee12ca9ac9db032637dc49964551663e5d5f233db72810556cb3",
|
||||
"bin": "coreutils-0.10.0-x86_64-unknown-linux-musl/coreutils"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.10.0/coreutils-0.10.0-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEF33B7ADCBB21",
|
||||
"hash": "7961ea69213380ace31f6ba25d6da6a2482541872427e10f90c3a9fa4528d290",
|
||||
"bin": "coreutils-0.10.0-x86_64-apple-darwin/coreutils"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.10.0/coreutils-0.10.0-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEF3379A26A2A4",
|
||||
"hash": "0510b85218e416e249c3daf6ebdc2c177f4af114a9dc4a3752ceaf35bd2dc567",
|
||||
"bin": "coreutils-0.10.0-x86_64-pc-windows-msvc/coreutils.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.10.0/coreutils-0.10.0-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEF335A204C1DE",
|
||||
"hash": "857175f6374cba41174fb45c2718b805a4eb021c83e4d160eb3dcd613cb565f1",
|
||||
"bin": "coreutils-0.10.0-aarch64-unknown-linux-musl/coreutils"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.10.0/coreutils-0.10.0-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEF33793EDE95F",
|
||||
"hash": "16092a31b57b1fce0e0acc03f32c80157a230956bded3760e728ca1157e87471",
|
||||
"bin": "coreutils-0.10.0-aarch64-apple-darwin/coreutils"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.10.0/coreutils-0.10.0-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEF3359A6DAE6B",
|
||||
"hash": "f23cd19a54a3e0114add0e46e3518c4f526cc0445d2556366f0bf16cee759cde",
|
||||
"bin": "coreutils-0.10.0-aarch64-pc-windows-msvc/coreutils.exe"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"url": "https://github.com/uutils/coreutils/releases/download/0.10.0/coreutils-0.10.0-riscv64gc-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEF335952FB9B4",
|
||||
"hash": "d41ebfe96a70ca6d7799c78e42ad56197222b6d2dc5f2738004e1a5e5daf28f4",
|
||||
"bin": "coreutils-0.10.0-riscv64gc-unknown-linux-musl/coreutils"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
"version": "0.6.0"
|
||||
},
|
||||
"0.8.0": {
|
||||
"x86_64_linux_musl": {
|
||||
@@ -26,116 +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.3"
|
||||
"version": "3.0.6"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.1.3"
|
||||
},
|
||||
"3.1": {
|
||||
"version": "3.1.3"
|
||||
},
|
||||
"3.1.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF356B36E38D2",
|
||||
"hash": "4629c757b7618056f8ddd7e2625ae9fdd94c0372a65049520bc7d9df9efc7f71"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF356BDC32FF5",
|
||||
"hash": "2347488e5d5b25336644024dfeca5601b190e91197a71a917bda44744aff106c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF356C37B8B8E",
|
||||
"hash": "9fe59be0eca1271873ce019061335eb1ac419b7059202e797828467ddabe33be"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF356C5BBD609",
|
||||
"hash": "c5d324e091826b0d7a78eb16fef316450b4eb9aaec045611c08ba06f5e73220a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF356C033944B",
|
||||
"hash": "5cf948c2f4dfe59687bdd0b8523709067383e03982cc543475c8a7dc70e92a76"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEF356BB964360",
|
||||
"hash": "15619e924681c97e0fb4f79c0eb8ef5d29665a06fe6a25078500985aed79321b"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEF356CCCA5A46",
|
||||
"hash": "9736177c6be33e4493304fc34feb8aa29209d531b3d40142d7e2a40bbe2f542f"
|
||||
},
|
||||
"s390x_linux_musl": {
|
||||
"etag": "0x8DEF356B89B11E4",
|
||||
"hash": "253b571ef9e1aef72ef56d74f464ef9fe5182dc83b1ab430bbffbc4c8e43e7fd"
|
||||
}
|
||||
},
|
||||
"3.1.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE41461869426",
|
||||
"hash": "f7622ed3cf22e55e1ae6377c080979ff77a22da9981c11df222a2e444991e7cf"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE4145D720B70",
|
||||
"hash": "acd180f8b015be25240ca33abee8a1e564eb65cdf1a3cee4725456d2dceb7da6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE41474C93B69",
|
||||
"hash": "fe4d621d7ae5e900ee62089837c00f996ae9acb82027d573d1d157b6ee875cb2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE4144E6AFA86",
|
||||
"hash": "90e7ae0b5dfd60f20816b52c012addf7fc055ebcc7bea4ce81c428ca8518c302"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE4146FDCC541",
|
||||
"hash": "dec1c3f802320b19c2fbcf2dc7bcfb3f258e1c181a046c23a1a074bdf932f10a"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEE4145970A22C",
|
||||
"hash": "c69f20a1d854f3b091b5a40b6d165a25686b8889fd103429aae758daf5f98e95"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEE4146C0D494B",
|
||||
"hash": "637125434e5e8e7c150ca9808e7cfc836f2c4a457087b0628d5adeb584b8988d"
|
||||
},
|
||||
"s390x_linux_musl": {
|
||||
"etag": "0x8DEE41468A53178",
|
||||
"hash": "f00b60739e13f63dc0846fc3d720d6d175584ae583158dcc4ca65b8e7db9d323"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
@@ -18,29 +18,9 @@
|
||||
"bin": "covgate-v${version}-aarch64-apple-darwin/covgate"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/jesse-black/covgate/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.2.0"
|
||||
},
|
||||
"0.2": {
|
||||
"version": "0.2.0"
|
||||
},
|
||||
"0.2.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB08EEA0C6D64",
|
||||
"hash": "2b3e8aae7e26f584db9dec00cc70d27876dad929f3230fcd0a85f39e4a1f0e36"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB08EEA0D2FD4",
|
||||
"hash": "29d2049edbdb78e67895ab8bc13d8400dec4bd7d9de075e73f7c62466ce5a6e9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB08EEA0FC504",
|
||||
"hash": "6f13614a312f70090d071bd2ce8d4cebd665be97bc7a6d93589f25c14e2e22ef"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB08EEA0A4CE2",
|
||||
"hash": "23b784619d5bb8040916d0a625e563d9ca244c05f3b20e813b6ab6f79a0487b7"
|
||||
}
|
||||
"version": "0.1.4"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.4"
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"rust_crate": "cross",
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/cross-rs/cross/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/cross-rs/cross/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "0.2.5"
|
||||
},
|
||||
@@ -20,121 +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.33.1"
|
||||
},
|
||||
"0.33": {
|
||||
"version": "0.33.1"
|
||||
},
|
||||
"0.33.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEE8F36E4D411E",
|
||||
"hash": "bfc8b2538da86fe239bc53658bbb63c1c8c510a293c1e6891aa5bea5d3c58746"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE8F38588ED57",
|
||||
"hash": "0ea92306fc7d7c30ed112a7463781a200585a3bf1cdaf77229181c5aabd1d4b6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE8F37D5FF086",
|
||||
"hash": "9b360974c41a5d612eb026fb5e3bb1fa28e08865f7a4f915665b8bc94bd3bc31"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEE8F3761D4E7B",
|
||||
"hash": "b2e9fdf9665ef49868a2ec012171c6e785dcd69745bc5869e53e4f4bfb096a5f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE8F3A0AC1E6C",
|
||||
"hash": "750c148780154833f6401f9067d08c5a4c31567b6ee3c26c062c3a95c62d741c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEE8F382EDE3C7",
|
||||
"hash": "49e169fe8dd579e16dc5d31b32cb5c832cebbd1e6d4d317df9d363985fb907a2"
|
||||
}
|
||||
},
|
||||
"0.33.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEE8F1BDDBDC31",
|
||||
"hash": "5e546226f942e92cbcaa978620375cc27f1d520dc2135f3b8aa2b470d1c680cf"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE8F1CC109F70",
|
||||
"hash": "4b422bd7b3b61395988a9c70f027924b7ea0f651cb8df82552acaa577abc1e9f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE8F1C5E52FDC",
|
||||
"hash": "1777f08fc3a17421ac667139b8bb594ecb0e8c2b8b336690c24c84124279b4c1"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEE8F1C2ACC002",
|
||||
"hash": "f4f2105567d6b675ccc60caa97b5c4baa7a462a6d134fda04b5e3e40331306dc"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE8F1E05124CD",
|
||||
"hash": "f1a7cc41024e106699474f249bd8a5698bccb2daebbf3597aca29eabd0ed57eb"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEE8F1C982E9CB",
|
||||
"hash": "953f08ae9e1821601b20a182cfeb7b1907015763b3003d627c4537d8cde2b7b1"
|
||||
}
|
||||
},
|
||||
"0.32": {
|
||||
"version": "0.32.0"
|
||||
},
|
||||
"0.32.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1C0D0F942CE",
|
||||
"hash": "454879e6a4a405c8a13bff49b8982adcb0596f3019b26b0811c66e4d7f0783e1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1C0E6600350",
|
||||
"hash": "a13a5de12d10cfccf8f222614b99af243fee5491b0ec73850b1d6fa050d4ad4a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1C0DDE8B2F2",
|
||||
"hash": "b1c00dbb40e628ec8c1252771871341ac4d4aaf032f832d83bd22cb2b1d258ae"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1C0D8F3B26A",
|
||||
"hash": "abf0b7c5648a5b127791d691cad41f004aceea27c75bb42c9572fdc9694770cf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB1C106F3BE09",
|
||||
"hash": "83be8a9599f1dce1252208bd4d0bb15308eca0546814fb72b48b7246d35e832e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1C0E3DAA66B",
|
||||
"hash": "88a8f99667909da3b69b74ab0368082305d52595d1dfc694114e29b4d9139d20"
|
||||
}
|
||||
},
|
||||
"0.31": {
|
||||
"version": "0.31.0"
|
||||
},
|
||||
"0.31.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEA5BE1A225492",
|
||||
"hash": "72c465982796cb930dd7bfabe68d869aea053c9b7a717dff9ceee56b5624eea4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA5BE2A8378AE",
|
||||
"hash": "78c3f395499fc80d1b0a0c2ad0497fa212ccb90a544524599be6356707b49bbd"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA5BE2463CF5D",
|
||||
"hash": "da18bdb0d5b10a5f45ddfb59b7b08b11ddc050bb5c6407608d831929a1799d3f"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEA5BE20738480",
|
||||
"hash": "ecdb5a10bba199417ccf94b57f27f0ec201b91eb4fadc6d7998696e082e69bef"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA5BE4A7F7F7B",
|
||||
"hash": "42d5b880968eed5b8939d48adf125c5d96944231259e19167c29e9da9e9d2afe"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA5BE28D7835D",
|
||||
"hash": "af0a5c6c17b0bee113066760d3378eb5e03eb5c75eca2479e61fc43669c46036"
|
||||
}
|
||||
"version": "0.30.0"
|
||||
},
|
||||
"0.30": {
|
||||
"version": "0.30.0"
|
||||
@@ -17,6 +17,7 @@
|
||||
"url": "https://github.com/DeepSourceCorp/cli/releases/download/v${version}/deepsource_${version}_darwin_arm64.tar.gz"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[BSD-2-Clause](https://github.com/DeepSourceCorp/cli/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.10.1"
|
||||
},
|
||||
@@ -26,277 +26,9 @@
|
||||
"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.57.1"
|
||||
},
|
||||
"0.57": {
|
||||
"version": "0.57.1"
|
||||
},
|
||||
"0.57.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF0B97B2171992",
|
||||
"hash": "03f3e8002f9d952bf53325fc8853686d2e8808b9e5b652b215600ba147e73a5c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF0B97B2156DC5",
|
||||
"hash": "8978bd5d9a564ec19472545fb853da9ec468e024e75d39c3a9df9fd5750ecdfd"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0B97B20E49D2",
|
||||
"hash": "1038af32fade7a79f9c3a690d9546bb17be13dd7b4568a3684692fdcb0a52a1d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF0B97B21DC8D4",
|
||||
"hash": "e1b713806f7f7b94072ba2b069aa19ac28f475dbb1fbc5b672d3030a2ab001ee"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF0B97B20F80F4",
|
||||
"hash": "f9e752812791f258e89ff88a7affd05c793b0db3d929718651eae7df5f19eb2e"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DF0B97B21EFFF2",
|
||||
"hash": "04a90c94c0b22d165088ff680644225910125b99731348a82fd7bf2926b9edee"
|
||||
}
|
||||
},
|
||||
"0.57.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF0B87B9FE3593",
|
||||
"hash": "e361513ede569f5da8164d036146578b0c50e232452ebe0c2c00f38ffc6ba4f1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF0B87B9F14BCB",
|
||||
"hash": "a17ac9a99c8d27800599e7362887a75e36a46204eb874bf1819c74aad473427c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0B87B9EF9FFA",
|
||||
"hash": "29b8e320968776917f5ffbd4bbbc8c48b266b0b74d868672ef30d51d773000c0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF0B87BA00084E",
|
||||
"hash": "f077da91d84cf0c307431fb95ed4eeeeaa38cde039a0251097991920c1f55d63"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF0B87B9F282EC",
|
||||
"hash": "72bf6537685d3d27fc572bbb77ce07e43f481de7c1422b5fcc2fe9484894dd53"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DF0B87B9EDF428",
|
||||
"hash": "29fd87af3a0a1ea696152f0f988ed7877d2c90799f26b1de79fe60387673e1d8"
|
||||
}
|
||||
},
|
||||
"0.57.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF0B70F1CCD6F2",
|
||||
"hash": "dd0fc5214329c95e552d7bfbb86d4a608e64f9482c6ec33dd182f4c839ee11cd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF0B70F1B06E1E",
|
||||
"hash": "e6ecff3eb8246b62f35123905bbab077f16ec8f73516ab92aa91727ab6812a17"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0B70F1A92362",
|
||||
"hash": "6aa57ba5f21a6247f2a3144c2e16ee7dd9aa1f805850d65f8a554cb38b575584"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF0B70F1B85492",
|
||||
"hash": "24b6f3cf8cc7a116681907843b777a1dc56cd75ffa98727e66a94b2d2f05ad89"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF0B70F1A1B1B1",
|
||||
"hash": "e0df7c5024a65ba865b89d357263d1ffea9cf380120986e301655e5037673a6f"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DF0B70F1BBD305",
|
||||
"hash": "291d4ad18ee0d5bb98f7fdd1fecbe0b6f0f5e3609cd1dd0be3dc52518b2a7d50"
|
||||
}
|
||||
},
|
||||
"0.57.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF09E82DAC8350",
|
||||
"hash": "d956144fa8d873dc43c37d1811b3f8c42701f74bb0be7c25c543b189ab53d6c0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF09E82DA8693B",
|
||||
"hash": "f1529d394126ebf0104af12290345b662196f8b9604d2d578cef91a8b6057f9d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF09E82D93296F",
|
||||
"hash": "28aa22ea2b009a3d49f9c570bc2a1697af8dff9117cd1cbb7c39deab9f5d5269"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF09E82DAC0E9E",
|
||||
"hash": "371b63109cbd7b34e179fc3af0815f65a5d9f3a560d2a245a78ef99ec71b3f9e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF09E82D9800F1",
|
||||
"hash": "3113fb58a126df96c95653638f068fe430f342623dfdf08e3fa32d4e704194ea"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DF09E82DA03522",
|
||||
"hash": "1dcf69d277c044e1e52afdb23fa0fb5152678955b41952721d801d3407d3ddaa"
|
||||
}
|
||||
},
|
||||
"0.57.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF06C9B716275C",
|
||||
"hash": "981a98fd4d245be8dda9bfb3d52a826d532b3290a559cb335970cebca7bf0b45"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF06C9B6F666E3",
|
||||
"hash": "41b6bb07d121d0506edd85d8176caf3d3909648089ee6c0b8b4f9c896791c14f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF06C9B6F3AAD7",
|
||||
"hash": "90e81a6106af4571893587acb4a1b1baa6b0879c60eec36497a08c03127410d1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF06C9B70C205A",
|
||||
"hash": "4458fb5ad357c2735210470a91e3f2a95abafcd7f2d7840cb94afc96dd11fbfe"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF06C9B6FD161D",
|
||||
"hash": "14bdbfb9b1e3ebd614d5ec08a068b04b0d0370d70c112723003dd9103a4c0c3a"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DF06C9B7028E31",
|
||||
"hash": "74eb0b910e6de3baa814d67da8cc8cf0774725d7cb652c9ade56904b78bcfad0"
|
||||
}
|
||||
},
|
||||
"0.56": {
|
||||
"version": "0.56.1"
|
||||
},
|
||||
"0.56.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFFBE58D16E59",
|
||||
"hash": "913032d493340643d6b98ce250a2407c5d0abab8613b3e16a09d92661131425a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEFFBE58C3C230",
|
||||
"hash": "f944e33a1bf8f6125eaa5ea77ee8a01db96093a6fb80df127b390f2a106774f7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEFFBE58AFFA31",
|
||||
"hash": "d2c5ee170ff88c0b16ea1f5f214e4d74877c7edb9ca701da5c9851c0c1ef9338"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFFBE58BB671D",
|
||||
"hash": "6f9541637ff47289409d709e4b006eeed84fd11c212dc029c4d26504a2cae0ff"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFFBE58B378AF",
|
||||
"hash": "c9af77af134987fada60344e8b9f23b2238081f7eea94a7bcd53ec49369354f6"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEFFBE58CCDF9E",
|
||||
"hash": "04f6470f2d0f584bfb90ffab03c8717e9354f0db98d33ee998e59b09d6a65c52"
|
||||
}
|
||||
},
|
||||
"0.56.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFD29A2A97810",
|
||||
"hash": "e958bfa3fec5256e72c2e4e028fa5674e43023eaff80d704ca96827af2eba240"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEFD29A29C4071",
|
||||
"hash": "466dd67e15fca266f3749008ef5d23ea7a6c657ef8204257dbb8c23636fc9aca"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEFD29A2AE5487",
|
||||
"hash": "cbcb0c6fdbb72289e895c3857720eb769046d42069973f38655b6aee16c01c73"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFD29A29C6757",
|
||||
"hash": "2e7d50e342d9d9d85b811635a04f3d49abdf7ec96d5b346cda932a7c4d42a7ab"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFD29A2A92A31",
|
||||
"hash": "79f5c80a3ddebb4717a89a25a79ec1c50947d4cef141df243757925cb47d32e1"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEFD29A2E5A126",
|
||||
"hash": "c888b0e2f559341a62fa666b1609ec957e609bfc146b5ee0ab7898723ebbe231"
|
||||
}
|
||||
},
|
||||
"0.55": {
|
||||
"version": "0.55.2"
|
||||
},
|
||||
"0.55.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE1D85D72777F",
|
||||
"hash": "45fc0eef3216af21c4c22c6e7e233aa45c3080fac07b6e94db7008a5c8e5c67a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE1D85D6BD2DB",
|
||||
"hash": "b7074cf6c814f995b783b5baa7e516b34e783c42c9baf7af553dbad731adb3a7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE1D85D5822CD",
|
||||
"hash": "12e8c26abc8c436223e70f5a30a2864001c92fa356a859eb93e06b97ab7dbd12"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE1D85D6FC608",
|
||||
"hash": "f0101217dd0abc94f1ac01b83d306d0288aeee8a501e8614a5e2bbe037500be0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE1D85D5CFF51",
|
||||
"hash": "e9ba8ed7988f3350501a8cf8af92da616cdec8d9d5c831c069293c587311b49d"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEE1D85D75F5F8",
|
||||
"hash": "ed70faf3ecfbb67786470c62fd3eee44172451fa91166f660c7a52a9d9c36979"
|
||||
}
|
||||
},
|
||||
"0.55.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED4D5B0059C71",
|
||||
"hash": "7ce856d5999585e58666701eab5e0291abfb63953884d5dd0268001c89d74b8d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED4D5B00968BD",
|
||||
"hash": "21f9784b3edf3b0a686932b4387359ebd83fba798ac2f7e2ba1e7b8c9f674e3e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED4D5AFF92741",
|
||||
"hash": "dfdee60f04810c14df310696ce680da7ece599cd27b162f77906adc80d5e9679"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED4D5B0107A1E",
|
||||
"hash": "2d414d659034650bc25b208a87ab427cd01a7ac6c21b3ed2191cf92e1b58f76c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED4D5B00C3941",
|
||||
"hash": "94a9ce5ca91dbb609d4f22f2ccf28d8b422627c0944c6ee63d1beecac28f8cd4"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DED4D5B00B4FD4",
|
||||
"hash": "318c4880ca5042c353cf13d860969b462b43eb758d001356d4cad4bb187c3620"
|
||||
}
|
||||
},
|
||||
"0.55.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED47C57948C0A",
|
||||
"hash": "b1365945a2c7ab51fa3c62221b3f984ba9971357e122dbf3817bdf02936f548a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED47C5755F4B7",
|
||||
"hash": "69d032d8fe70441fc4307cdd5360d5e0086773bb2f7ba63d4863e59c64f3df38"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED47C574E0E54",
|
||||
"hash": "44a025c8ca4cf5d9598349e48927a35186caac893fee0a5bb28e98996ef11432"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED47C575FADC9",
|
||||
"hash": "12864a0ebe6274f9f4b647e6ae2abc5eb33ace9e722d94bd23942a2975783e18"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED47C575A8375",
|
||||
"hash": "cf6c0149ac9ed76aee2535d0dfeffd2c9d34bcfe42c397127bba4a8c934722cc"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DED47C576A9DF8",
|
||||
"hash": "825ce485ea3a9a61f691de1c85542a278e22c8c08d4dca9fb8e4224ab4319c59"
|
||||
}
|
||||
"version": "0.54.0"
|
||||
},
|
||||
"0.54": {
|
||||
"version": "0.54.0"
|
||||
@@ -17,6 +17,7 @@
|
||||
"url": "https://github.com/earthly/earthly/releases/download/v${version}/earthly-darwin-arm64"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MPL-2.0](https://github.com/earthly/earthly/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.8.16"
|
||||
},
|
||||
@@ -1,289 +1,12 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"license_markdown": "[MIT](https://github.com/editorconfig-checker/editorconfig-checker/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.11.3"
|
||||
"version": "3.6.1"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.11.3"
|
||||
},
|
||||
"3.11": {
|
||||
"version": "3.11.3"
|
||||
},
|
||||
"3.11.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.3/ec-linux-amd64.tar.gz",
|
||||
"etag": "0x8DF09FCF0FBC539",
|
||||
"hash": "6a73858f8906e466910fb3b3b525c206b27dacdad138910b0b0513f021ab32c4",
|
||||
"bin": "bin/ec-linux-amd64"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.3/ec-darwin-amd64.tar.gz",
|
||||
"etag": "0x8DF09FCF1CD5480",
|
||||
"hash": "126c8fa83500389078f6b2072a04170f063787ec9905e5d1ab69a5a62ee5b10d",
|
||||
"bin": "bin/ec-darwin-amd64"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.3/ec-windows-amd64.zip",
|
||||
"etag": "0x8DF09FCF0FA196D",
|
||||
"hash": "0d6739507ac0b57099f0339fce1de0856584c71dd878c89cbc07845884f42ab5",
|
||||
"bin": "bin/ec-windows-amd64.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.3/ec-linux-arm64.tar.gz",
|
||||
"etag": "0x8DF09FCF0B767F6",
|
||||
"hash": "6d333917ad3c21cf0a23c191ec660549de381e6df56ee5e76ace0c513da2b7b4",
|
||||
"bin": "bin/ec-linux-arm64"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.3/ec-darwin-arm64.tar.gz",
|
||||
"etag": "0x8DF09FCF1B7E8B6",
|
||||
"hash": "eeb0e5d1db4a913277da781bc40802542eb42c4f3f43b7c87c000714dd905faf",
|
||||
"bin": "bin/ec-darwin-arm64"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.3/ec-windows-arm64.zip",
|
||||
"etag": "0x8DF09FCF16167D7",
|
||||
"hash": "f9e44367c5139bcce87e67e3bd7d9a878978692469decff607c1edf8e091c468",
|
||||
"bin": "bin/ec-windows-arm64.exe"
|
||||
}
|
||||
},
|
||||
"3.11.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.2/ec-linux-amd64.tar.gz",
|
||||
"etag": "0x8DF02EDD5064798",
|
||||
"hash": "bc815e5b3b1891a0ee9e1242fe3475312655f8b0f4c4a79510be0a009294571a",
|
||||
"bin": "bin/ec-linux-amd64"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.2/ec-darwin-amd64.tar.gz",
|
||||
"etag": "0x8DF02EDD5DA2081",
|
||||
"hash": "1a013573bbd394341168ea95174790ed44d6fc180f6d16e75c2ebc032f05bcc1",
|
||||
"bin": "bin/ec-darwin-amd64"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.2/ec-windows-amd64.zip",
|
||||
"etag": "0x8DF02EDD55719E8",
|
||||
"hash": "ca6879da5ff16101c00432dc1f67f46fba6da229f7d24a715b2fd3be4249f7ab",
|
||||
"bin": "bin/ec-windows-amd64.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.2/ec-linux-arm64.tar.gz",
|
||||
"etag": "0x8DF02EDD534EB57",
|
||||
"hash": "7c61c94a67658bff62467453c3d7d9a98d57139728d27e545e9d3e3688fc9ca6",
|
||||
"bin": "bin/ec-linux-arm64"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.2/ec-darwin-arm64.tar.gz",
|
||||
"etag": "0x8DF02EDD5D150CD",
|
||||
"hash": "9ed40abdc3051c1b76c9557cd58c66ab1784728242dbd9c40cfffe1528195ab2",
|
||||
"bin": "bin/ec-darwin-arm64"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.2/ec-windows-arm64.zip",
|
||||
"etag": "0x8DF02EDD5AABA57",
|
||||
"hash": "566b10ab05916a314c7be1ba1ce1ce99a349bac5842385177d0b2922e821e4fd",
|
||||
"bin": "bin/ec-windows-arm64.exe"
|
||||
}
|
||||
},
|
||||
"3.11.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.1/ec-linux-amd64.tar.gz",
|
||||
"etag": "0x8DEF53C67032FE5",
|
||||
"hash": "5a37922963248451e88149251e49f6ae08f69717a3918202a51fe9945e19691e",
|
||||
"bin": "bin/ec-linux-amd64"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.1/ec-darwin-amd64.tar.gz",
|
||||
"etag": "0x8DEF53C67E34F3C",
|
||||
"hash": "a9f68961e33d1a3b3f134c403557c8b2bbafb70b21b4c32b5d9245ffc2875f4f",
|
||||
"bin": "bin/ec-darwin-amd64"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.1/ec-windows-amd64.zip",
|
||||
"etag": "0x8DEF53C677B17B2",
|
||||
"hash": "6f81f034bbaf77d7ea73274aa7d33995baf9e0d91bc4d4caa8eccff4645f870e",
|
||||
"bin": "bin/ec-windows-amd64.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.1/ec-linux-arm64.tar.gz",
|
||||
"etag": "0x8DEF53C66FC80B0",
|
||||
"hash": "073d5263f0c5953f3e847df44a84403ecc284ab77419de56e280ab92bc082e8d",
|
||||
"bin": "bin/ec-linux-arm64"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.1/ec-darwin-arm64.tar.gz",
|
||||
"etag": "0x8DEF53C67009AD0",
|
||||
"hash": "69205598fe8b26677d31194c5c9fdf7e8be321909ffb3c99efb5c9e4e648583e",
|
||||
"bin": "bin/ec-darwin-arm64"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.1/ec-windows-arm64.zip",
|
||||
"etag": "0x8DEF53C67D57C1F",
|
||||
"hash": "358f3bbf0c297ba81174bac69dc745d75a52cdb7a587f35506955c47baf11428",
|
||||
"bin": "bin/ec-windows-arm64.exe"
|
||||
}
|
||||
},
|
||||
"3.11.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.0/ec-linux-amd64.tar.gz",
|
||||
"etag": "0x8DEF539D8DAFDAE",
|
||||
"hash": "5eba1f3f03641dc09cafae9feb7e913e2bf29e976c4286974a637f2b5f953b6d",
|
||||
"bin": "bin/ec-linux-amd64"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.0/ec-darwin-amd64.tar.gz",
|
||||
"etag": "0x8DEF539D8CA6E90",
|
||||
"hash": "573bd2b93b905e3f1244c66ed784eec3ca902dad76c249de3ad0f90510042998",
|
||||
"bin": "bin/ec-darwin-amd64"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.0/ec-windows-amd64.zip",
|
||||
"etag": "0x8DEF539D8D2A2B0",
|
||||
"hash": "70b3de37018c6b27fd97e3b161691d25636af6e21241a16cd149b3046cade36c",
|
||||
"bin": "bin/ec-windows-amd64.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.0/ec-linux-arm64.tar.gz",
|
||||
"etag": "0x8DEF539D87A10EF",
|
||||
"hash": "4e8d97b667af90cf85644f24a932aa9d35e5384581a59f2e00cd84838ce99bb5",
|
||||
"bin": "bin/ec-linux-arm64"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.0/ec-darwin-arm64.tar.gz",
|
||||
"etag": "0x8DEF539D8718F09",
|
||||
"hash": "63f335f58eadd7df9bb863ff0225ce95c2bc17d04d099fd5b936e57a81b6503f",
|
||||
"bin": "bin/ec-darwin-arm64"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.11.0/ec-windows-arm64.zip",
|
||||
"etag": "0x8DEF539D92B9C74",
|
||||
"hash": "0f39ba6dd6d948bd5cb3d56bcc88ebb89ab7a1ef21577a84a632c0632ff5b30e",
|
||||
"bin": "bin/ec-windows-arm64.exe"
|
||||
}
|
||||
},
|
||||
"3.10": {
|
||||
"version": "3.10.0"
|
||||
},
|
||||
"3.10.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.10.0/ec-linux-amd64.tar.gz",
|
||||
"etag": "0x8DEF4DBE0879361",
|
||||
"hash": "fcf35f10e9628fa88c0b4b7dd6ee55c6eabe267d578347907b1cbe0ede21a6f4",
|
||||
"bin": "bin/ec-linux-amd64"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.10.0/ec-darwin-amd64.tar.gz",
|
||||
"etag": "0x8DEF4DBE13418CE",
|
||||
"hash": "cd65718f07e2efb8dcb286c458cb181a2fb8c4e48c82629da6e9e657aaf2cac2",
|
||||
"bin": "bin/ec-darwin-amd64"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.10.0/ec-windows-amd64.zip",
|
||||
"etag": "0x8DEF4DBE0931F2D",
|
||||
"hash": "860de8014a738890440620828cc3eb49bef2beed13ab8c40ec255364ac0e1e44",
|
||||
"bin": "bin/ec-windows-amd64.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.10.0/ec-linux-arm64.tar.gz",
|
||||
"etag": "0x8DEF4DBE136FBC5",
|
||||
"hash": "953ccbe18d6dab1dc92dbdc65e2ba97cf2886e5ef17206d11f245fef54499c8f",
|
||||
"bin": "bin/ec-linux-arm64"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.10.0/ec-darwin-arm64.tar.gz",
|
||||
"etag": "0x8DEF4DBE0E772A7",
|
||||
"hash": "7b3c4fae8d04b6c4dcd5e197cfebb1ae912ba10d04c3dd9b3713b75566697302",
|
||||
"bin": "bin/ec-darwin-arm64"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.10.0/ec-windows-arm64.zip",
|
||||
"etag": "0x8DEF4DBE0E13811",
|
||||
"hash": "865237fa01621d2824294f20fecc6880e18db0c7d0e6dacf82f7d749eb4c0a49",
|
||||
"bin": "bin/ec-windows-arm64.exe"
|
||||
}
|
||||
},
|
||||
"3.8": {
|
||||
"version": "3.8.0"
|
||||
},
|
||||
"3.8.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.8.0/ec-linux-amd64.tar.gz",
|
||||
"etag": "0x8DED518B72AFA27",
|
||||
"hash": "613bd88f34165a334adcb6b7e92a123c9de0eada65846d31af63613b779ff3be",
|
||||
"bin": "bin/ec-linux-amd64"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.8.0/ec-darwin-amd64.tar.gz",
|
||||
"etag": "0x8DED518B6C5CC71",
|
||||
"hash": "ee0d45c94b9808a5aa15e08f94333a81842b456f511f29f71a8fe589b82d72a1",
|
||||
"bin": "bin/ec-darwin-amd64"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.8.0/ec-windows-amd64.zip",
|
||||
"etag": "0x8DED518B7667E4A",
|
||||
"hash": "7ec31e1a6a9983aa2a4942cb66dfd35e8b61e76263460413988438ae1426906a",
|
||||
"bin": "bin/ec-windows-amd64.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.8.0/ec-linux-arm64.tar.gz",
|
||||
"etag": "0x8DED518B648C810",
|
||||
"hash": "5676889ac4eed1036180ffbe2aeb2062d985ac50f7e6035fe61160c6b8be2c33",
|
||||
"bin": "bin/ec-linux-arm64"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.8.0/ec-darwin-arm64.tar.gz",
|
||||
"etag": "0x8DED518B7A05FE8",
|
||||
"hash": "73bbb23c24b94c9e61d7ed3694cc313943c59e5e8bc5bee9f186a997a45eb046",
|
||||
"bin": "bin/ec-darwin-arm64"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.8.0/ec-windows-arm64.zip",
|
||||
"etag": "0x8DED518B71BC900",
|
||||
"hash": "a05e52bfec8c2f06aac736a89706644a75e24aadd066572db4fc672a80e7c8b9",
|
||||
"bin": "bin/ec-windows-arm64.exe"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
@@ -17,55 +17,9 @@
|
||||
"url": "https://github.com/esp-rs/espup/releases/download/v${version}/espup-aarch64-apple-darwin.zip"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/esp-rs/espup/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/esp-rs/espup/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "0.17.1"
|
||||
},
|
||||
"0.17": {
|
||||
"version": "0.17.1"
|
||||
},
|
||||
"0.17.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DE9C74A098CB39",
|
||||
"hash": "dd8625b3742b2f74ce406286baef8ee67525d63b25ea303ddf7473ed2cc31192"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9C747D3044B2",
|
||||
"hash": "c51cf3d7a91c5e24de680812cf110fa58a4315ed80b8d1af8e74f89088d8b861"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9C748FE2165B",
|
||||
"hash": "f3a2d372e6f04f67a2adb7ff310ad336d9d475a5c4ce2c0c7855792875981bf0"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DE9C7475A3FBDB",
|
||||
"hash": "9b0082414a962edfdd62aeebba07e8eaf3009477e78903a6bc656775f2f1dbe7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9C74AB2E27B6",
|
||||
"hash": "93bff02d2e3f37eb5c0ab68b2016fcbeb5e9aa0334f8f47e5ec63a219daace91"
|
||||
}
|
||||
},
|
||||
"0.17.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DE9C60D8405E5A",
|
||||
"hash": "9b97234338a83c23e6324595ae861b190cc95fefeb257575f05327fe1f2cd77d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9C60B152442B",
|
||||
"hash": "366e7f1ba3aaf60d026a232d83cf75e0d9a977083ffba5a4ef90bb0732df4d11"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9C60C2BCF730",
|
||||
"hash": "03049e76c11f174b3f32277545be53819a243af8e8c012e7c07e10314840e170"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DE9C60A9AE250C",
|
||||
"hash": "f6356701429f99b2bb6dc1d67aadb56bf3c3b09b6e583849d334068d5edda418"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9C60B3F2D0E4",
|
||||
"hash": "7f7c5f38d15bbce54a910150ba295516985e3bf27abbacf81d8718bf7cf7521d"
|
||||
}
|
||||
"version": "0.16.0"
|
||||
},
|
||||
"0.16": {
|
||||
"version": "0.16.0"
|
||||
@@ -26,95 +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.14.1"
|
||||
"version": "2.12.0"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.14.1"
|
||||
},
|
||||
"2.14": {
|
||||
"version": "2.14.1"
|
||||
},
|
||||
"2.14.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF08383DB74557",
|
||||
"hash": "cba6ae86f0a4205784eed8ef049fe53c904138806e33a1bda2e25026b17198eb"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF08384B7EE745",
|
||||
"hash": "d1ca51bfd8b8c2a09434532bdb85bab50179b7c0bde2378aa48f3c1a7dc2fd36"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0838E2428734",
|
||||
"hash": "791aa263079aa7894e24d4e2f8e978aa6214e9dd9dbf04f79ae5f3565758f1a1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF08383955781B",
|
||||
"hash": "ee79fa39a8bb100b12937b0ac4800cc4436ae48f678ef8a1502ce99754552b0c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF083837BFFACF",
|
||||
"hash": "2e2d1f60963aa6a201dbd21df14d7f44025328b8bb33437695f15a516598615a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF0838D7B53F43",
|
||||
"hash": "6769ff0f5d65d1892ff8a3711ac76b78bf0c13eb124a80bc04147f6cffc03d0c"
|
||||
}
|
||||
},
|
||||
"2.13": {
|
||||
"version": "2.13.1"
|
||||
},
|
||||
"2.13.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA37D7F9F3C29",
|
||||
"hash": "200d2535da6d9703f3bcc8a4d159c3b55eacdb01cf2148c55b3eee9dd04d5249"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA37D44E87B3A",
|
||||
"hash": "6e60ae390d375cecb9d8008c49f0e724a8dfe40390b532ef5501e421d2cc8acb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA37E02E19030",
|
||||
"hash": "3ae3a5549e85c7ad5b20192ebcfee4371269deca51255f6f2f2e051c6541f5ca"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA37D82440AED",
|
||||
"hash": "4054c124b926c117f3fa048939bc8be0a954f29f3b6f367627e8cb22c1971882"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA37D25D82E17",
|
||||
"hash": "21547ae4a0421164070ab75c2522864ea5565858a011fabc5f583061b20f1226"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA37E17A6094D",
|
||||
"hash": "03a623191fe575bc0024e2ebc61cc861cebd3ba84b93ff13b002c42e8248cd3f"
|
||||
}
|
||||
},
|
||||
"2.13.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA3772B3C02DF",
|
||||
"hash": "132539f836416563e86621ff0649f0c0c766cf32ea1be85f3ba0d34f043ce86a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEA3771FC5A88A",
|
||||
"hash": "ad980b6bd5c52deec7c24a55599f652607d40d221f0bfb75142017a9fc82f7c4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA377B78B9783",
|
||||
"hash": "17f891a0ec38f8c9ef6440eed31be43117491b05afeba6093a15545633eae6ff"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA37725E52DB8",
|
||||
"hash": "27b9216d92a254fb03d18008252a7c8c7bc803b4616bf69175ff448918a9606a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA376FF31CE86",
|
||||
"hash": "72e8d1f4d1dca4312ccf979c72a094e5bab0a659ec6c8d4e1bbea19f9cc65b23"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA377B597C5A5",
|
||||
"hash": "ae2cdf8b70999c8dd52af50283b0c9a8d811055e1f8879ffd1a7d90c678e902b"
|
||||
}
|
||||
"version": "2.12.0"
|
||||
},
|
||||
"2.12": {
|
||||
"version": "2.12.0"
|
||||
@@ -17,6 +17,7 @@
|
||||
"url": "https://github.com/mozilla/grcov/releases/download/v${version}/grcov-aarch64-apple-darwin.tar.bz2"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MPL-2.0](https://github.com/mozilla/grcov/blob/HEAD/LICENSE-MPL-2.0)",
|
||||
"latest": {
|
||||
"version": "0.10.7"
|
||||
},
|
||||
@@ -22,146 +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.4"
|
||||
},
|
||||
"0.19": {
|
||||
"version": "0.19.4"
|
||||
},
|
||||
"0.19.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEDE56F0651006",
|
||||
"hash": "2f7fab98ffa6c7530fb3d95aac6fdb183f617fffcc2f25b6dfc7567a94eb501b"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEDE56F491743F",
|
||||
"hash": "c9ec43d67ce7dca44d114194a8d32711326fc744416aab77de7ccbf993fce2ce"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEDE56F1C45C05",
|
||||
"hash": "b1874b68595c2a7c881f9ab8357968412f5312b6402d8be49a001e1665b4f985"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEDE56F349DF53",
|
||||
"hash": "a71eb2d1935dada8412a8f2b6c76bab44245ddca87ad3ef617d15fc646ba8f59"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEDE56EF1DD827",
|
||||
"hash": "a0e7ba798ca1860aed07ff62646a6f56dd33da134dea4d057f7209a3c68083db"
|
||||
}
|
||||
},
|
||||
"0.19.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED4CE8F991484",
|
||||
"hash": "0446a28eba0065bef211653b728faa94e376019d37c8eab9c053506ab0d123c5"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DED4CE8DFFBFFA",
|
||||
"hash": "8be42845dcf550b1b6325482cab36fc134acb352163a33fe00af9a36d38bad0b"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DED4CE10974E17",
|
||||
"hash": "29c36101d3b4ea0996f3c6c320dce4c5aa39b44e15f69da16e5aac48cdda9ac9"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DED4CD3B504172",
|
||||
"hash": "7fa1fef874fc479b4f59bff82c079d26d735c19f49570ff6a21754516b8e6ff9"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DED4CEA00B5826",
|
||||
"hash": "767b5b34588afa1a29b3d3decf89e55e5ae4b71cf55d0bb5dbef0ffca767ebda"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
},
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -20,298 +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.58.0"
|
||||
"version": "1.49.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.58.0"
|
||||
},
|
||||
"1.58": {
|
||||
"version": "1.58.0"
|
||||
},
|
||||
"1.58.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF19E354A3E6C",
|
||||
"hash": "4a5cc2f53e6f0f8c59092a6cc38291eb729d46a7dd95d3ae582008881b84931d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF19E3AA32D5D",
|
||||
"hash": "9a09cfef66aaa79da58203970103a0684307716caaabd3e9844cacc4dc0f4023"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF19E854DCBEE",
|
||||
"hash": "759f16fb7aa17c5c8b9594b6d4a8c1a6630dfd042cf2b3ff84841454d3d188dc"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF19E3B1581F1",
|
||||
"hash": "748237128c4c40cbdabc65e841d05ceba13cc23a91eaba395495894c1d9764df"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF19E34C8EB5D",
|
||||
"hash": "50ae3e996c974a0bf32ea7d10f495070df33f1b43e0616b2769e3d4821ed8f48"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF19E74FB1736",
|
||||
"hash": "3a39ed629eb67678976c811a4da46f7985a2c22f4dbabe017b8b2eb5ceb5d01c"
|
||||
}
|
||||
},
|
||||
"1.57": {
|
||||
"version": "1.57.0"
|
||||
},
|
||||
"1.57.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE53947DCF623",
|
||||
"hash": "45b548094283cb9739af8f13273b8cddeee869f5b4ef2bb631b1f311cb566155"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE5394AD32502",
|
||||
"hash": "5e6ade3698095576274b2b32cc9e5d467185e8e40b04949004c04cc3d7e962dc"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE5397E300905",
|
||||
"hash": "4c7391d17cb1d17b758b52004ee6411372b8a13ff37c3c9b9031625cb6026e09"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE5394F651923",
|
||||
"hash": "f225044a81adea6e0b3a8b9370aaf374e6af76c8735ae263ac993df55fd137ec"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE53949646DB5",
|
||||
"hash": "0381db216c2f97ce31d838a1562c1064dfbfa73f5a8a81581338a2cd9217df47"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEE5398610042A",
|
||||
"hash": "14ff33bbac8d2f07deda30cd3bafe7be083213cdb1c4dae7a55567d375cc17f1"
|
||||
}
|
||||
},
|
||||
"1.56": {
|
||||
"version": "1.56.0"
|
||||
},
|
||||
"1.56.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEDE3773457266",
|
||||
"hash": "fa2a8ec1015d9df5330941ade12437488fc40d33f9c9f8cd4eb70a26de11b639"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEDE3774913545",
|
||||
"hash": "09b35ff6d17023ffae37ce408d1a78a976d9e001cae54b88e238f7f40db9b783"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEDE379EF48D90",
|
||||
"hash": "804f5b2fe94291d0df38fd8dfc5620afbf3496f8f11c1915b42a87323234f0ba"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEDE377F980A1B",
|
||||
"hash": "c8c1d656e9f47569ec1ae2bf8779af2621cdeea6bbbba3b0cacd64f951d25e2b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEDE37741A1A49",
|
||||
"hash": "f35798d4bcdc4db020eef7d2853ad98bbfb97a4d29ee695ba042f18e7fedcc11"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEDE37B1197DEF",
|
||||
"hash": "790b7563403b938cbf93fa8807ca17ab68a3ebaa3f4bb2e0a119f4897d1960c4"
|
||||
}
|
||||
},
|
||||
"1.55": {
|
||||
"version": "1.55.1"
|
||||
},
|
||||
"1.55.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED666752DE8CE",
|
||||
"hash": "b0ef600f0df20d5ae91ae931627c499fc52b477ffe5f5ea7b7b3ec616b16c778"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED66675925400",
|
||||
"hash": "74d7d0afc195df14d8e34636fb9b6a9c7d3d443622478dbe86140ffe41ad9192"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED666A8EDA63A",
|
||||
"hash": "8106e6c036aea52dd1d5109bdf9357c37ba87a0e0ef1013d7327103942550c79"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED66678D0E30D",
|
||||
"hash": "b0ee814c9656427408e339893541e30d9027828686839499b2a2a34dd61ad173"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED6668169AF7C",
|
||||
"hash": "0225e3899b1b555bc3f4122d0402ba931a6ee697d188c68e4d971468064c78f4"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DED666AFC720EE",
|
||||
"hash": "40322a175e1a780e9e3c1a776c90676b38a530d2ebde95af151885685e4439ae"
|
||||
}
|
||||
},
|
||||
"1.55.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED61F35365E8F",
|
||||
"hash": "978178d9b20d2017ae7efdd29b204afc2ba75d103b4ab9d2c4e1a6407bbd648a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED61F49BBD24C",
|
||||
"hash": "deca76d668082fa90562d92b3cd9e298401baf3b966566a4d5720070bb69120a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED61F75AE33C3",
|
||||
"hash": "a2a53bf1b220ba6484b7910077645fce167733052c1bef015dbad567c5df43f4"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED61F37FF54BD",
|
||||
"hash": "0296d0fdb9207523a66302e1dfb549eece06adfe8339e1f63535cb5ac30bab77"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED61F34AB4ECA",
|
||||
"hash": "3d8453f2d56c82bcbb0aa17973ddbed9155b336c8e14c420af8815b919c3e293"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DED61F6D136267",
|
||||
"hash": "1625d936abc7b2994292d0bd6503adacb6da919ca249cc27188fb278855e984c"
|
||||
}
|
||||
},
|
||||
"1.54": {
|
||||
"version": "1.54.0"
|
||||
},
|
||||
"1.54.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED0DF278EA430",
|
||||
"hash": "193e2b04bac8ff3568ff81cf62f8c9db08f8083e16665e28d400dd35bac47ffd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED0DF1482500F",
|
||||
"hash": "3f1adefef12bcdf99134a44bde53b779e83726381e15de92113ce4bf2a3cf61f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED0DF5C7067F2",
|
||||
"hash": "860e21474e956eaa9879d62f68cc24530254eefe14ac108eaf707c0daf56a6d0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED0DF26A1DD1F",
|
||||
"hash": "2162accb54d087c6fbd165c1baedccb0f93b4953af7f00309b8f928016c49cae"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED0DF173FA47A",
|
||||
"hash": "a776fc5015491f84580875bc6dad3de59fa4f47a309ccac49d1287cb55f9b599"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DED0DF54B3C2A6",
|
||||
"hash": "53037b100843ba20826506aa8857c3b209d01542643570190a51692e3e91068f"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
@@ -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"
|
||||
@@ -1,84 +0,0 @@
|
||||
{
|
||||
"rust_crate": "bpf-linker",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/aya-rs/bpf-linker/releases/download/v${version}/bpf-linker-x86_64-unknown-linux-musl.tar.zst"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/aya-rs/bpf-linker/releases/download/v${version}/bpf-linker-x86_64-apple-darwin.tar.zst"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/aya-rs/bpf-linker/releases/download/v${version}/bpf-linker-x86_64-pc-windows-gnullvm.tar.zst"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/aya-rs/bpf-linker/releases/download/v${version}/bpf-linker-aarch64-unknown-linux-musl.tar.zst"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/aya-rs/bpf-linker/releases/download/v${version}/bpf-linker-aarch64-apple-darwin.tar.zst"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/aya-rs/bpf-linker/releases/download/v${version}/bpf-linker-aarch64-pc-windows-gnullvm.tar.zst"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.11.0"
|
||||
},
|
||||
"0.11": {
|
||||
"version": "0.11.0"
|
||||
},
|
||||
"0.11.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF88A3C954551",
|
||||
"hash": "10f62ba9ab7e544d538370552660efcb4f1a19153d5752bbf0f6b51f3bada450"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF88A398F3AA9",
|
||||
"hash": "10eec9ff4397ec69d15e522ba6d579aecd8fc4cbec34d86cae7ea943bb5a9a55"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF88A3A92E871",
|
||||
"hash": "b6ff405d8f8469f8bb34c6e40c000d664bdf97f291cca8e76492658a9703ec6c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF88A389C9131",
|
||||
"hash": "d09ddd83303e9ab1443f51e0e284680154009646a3ce141c63d838ee61b73eb9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF88A37A5094D",
|
||||
"hash": "d3b1952971472334e3f3e76760c33a6a97f151af45b9b89a70e06d92e5bb4a75"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF88A37B63413",
|
||||
"hash": "6ff367c572498f7b27e6ad902c303b6936fcd6bdee0bfd26d904f598ca849791"
|
||||
}
|
||||
},
|
||||
"0.10": {
|
||||
"version": "0.10.4"
|
||||
},
|
||||
"0.10.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DECC93D0199F9F",
|
||||
"hash": "4dda77daab6c5f120a468e6d3ede2498f5bd47ece712172cfb7290176d93d015"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DECC93CE4D2D43",
|
||||
"hash": "55771c82883b414f3f4e8bd081a182e8deefa1b953ab249c85b253fc2b69de48"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DECC93CF001074",
|
||||
"hash": "d3e3448333f4dd7e49103071a547ff9a944d6f277b48bdcfe9d9326dca725260"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DECC93CD762FA5",
|
||||
"hash": "c3638cd3cb735ff85705905a07e0df61c0f9426480334c8e2efe5cb92fd9d3de"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DECC93CC81DECB",
|
||||
"hash": "7e0c692b2e839afdb3e2f1053bd9a94e55b99f7b6a94ef69990449a6d72837ce"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DECC93CC8D916E",
|
||||
"hash": "341ea6db58a7d5ac7348d835e86a8da9ef351445704646f9632a4410d89ae60a"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,917 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-about",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/EmbarkStudios/cargo-about/releases/download/${version}/cargo-about-${version}-x86_64-unknown-linux-musl.tar.gz",
|
||||
"bin": "cargo-about-${version}-x86_64-unknown-linux-musl/cargo-about"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/EmbarkStudios/cargo-about/releases/download/${version}/cargo-about-${version}-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "cargo-about-${version}-x86_64-apple-darwin/cargo-about"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/EmbarkStudios/cargo-about/releases/download/${version}/cargo-about-${version}-x86_64-pc-windows-msvc.tar.gz",
|
||||
"bin": "cargo-about-${version}-x86_64-pc-windows-msvc/cargo-about.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/EmbarkStudios/cargo-about/releases/download/${version}/cargo-about-${version}-aarch64-unknown-linux-musl.tar.gz",
|
||||
"bin": "cargo-about-${version}-aarch64-unknown-linux-musl/cargo-about"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/EmbarkStudios/cargo-about/releases/download/${version}/cargo-about-${version}-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "cargo-about-${version}-aarch64-apple-darwin/cargo-about"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/EmbarkStudios/cargo-about/releases/download/${version}/cargo-about-${version}-aarch64-pc-windows-msvc.tar.gz",
|
||||
"bin": "cargo-about-${version}-aarch64-pc-windows-msvc/cargo-about.exe"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.9.2"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.2"
|
||||
},
|
||||
"0.9.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFD387A14D3B2",
|
||||
"hash": "9099a59e820c38a68b9d65f300662a567d56562f9a10f6aa4c7e86c17c2566af"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEFD38AEBB93D5",
|
||||
"hash": "1c03e5890238562497c2d89a3b75b02560af349c1fc3e713d3284f532a5cd748"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFD388171682E",
|
||||
"hash": "af5169282fb6f84e13471493f405437e43ac517744c9ae12fbe2cdf0a6f0e5a8"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFD3870F365A6",
|
||||
"hash": "ae72f0df0c399a1e96336f696fa55b1b28679fd725632eba8cf8e4568467cc3e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEFD38BAC75453",
|
||||
"hash": "1251a3cdf09538eb91a4f95af34ea719913db98c54574e1165052616e9ad93ec"
|
||||
}
|
||||
},
|
||||
"0.9.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED684FD7FBE74",
|
||||
"hash": "c0e7dc6f5d74b0beec5c0053d39ab24514c717d19acd91886907a22457ea9e98"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED6853DBF4AFD",
|
||||
"hash": "318893aff6b9efd60f70470f5827b9577ae20a805cf9732d5612862a78508581"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED68503676D9C",
|
||||
"hash": "d13ff19fedb566f859831c0b71c22120e7c598c7753d5f1018dd7353c6ced02a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED684EF5F949A",
|
||||
"hash": "6a38fe166d17a674269d4373256c0b6bd93acc2553e12de0517cb9ecc73c9c02"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DED6853C26DD0E",
|
||||
"hash": "e2b695e4787381fa36e99ee85d5c6439eec21dd09d875572802124867da42af7"
|
||||
}
|
||||
},
|
||||
"0.9.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEA207B212262C",
|
||||
"hash": "7a1a1bfb3ae3b6feabe9e1d6147a6b34b85bd0339bfd8b0ec11b312dee10d99a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEA207EB8B973C",
|
||||
"hash": "87daca52ad79980b42b2de6acdec84e143be41e2d4bbebedba0d0c90c49b055a"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEA207B7AC939E",
|
||||
"hash": "46b202700ea136066cdaca38180da9ab4e7d7534b3418546de858ae0aee4a1cb"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEA207A0A57A1C",
|
||||
"hash": "4e1cfc5d58b733f6def1741fc888b435cdb2996da5c2c4547ed36cba191667f6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEA207EA734C6D",
|
||||
"hash": "dc2b30688d34b8648da364f0a0a2f0a1430d0532ce6b4773667e4d2bd288ab19"
|
||||
}
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.4"
|
||||
},
|
||||
"0.8.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE331F91614EF1",
|
||||
"hash": "c7381aa0cdc41fc0ee662cec8daa260da7817ad8ddea04cd4ddad425460adf14"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE332008A09993",
|
||||
"hash": "e918d49c481f43eb17da92c406839d5c01d480261d8026a017f3d23706009d0d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE331FCFB1B3E6",
|
||||
"hash": "d5c38fb914bbad57c6a7d58c4847315bc3fe11efbe4fb51b3c515f997a56ceb7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE331F995DDB14",
|
||||
"hash": "33e0d54c0366308095fdb9101642d281b224131299e1c62001f43aa02bb3573e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE331F8B247874",
|
||||
"hash": "d5255ead3ac861a11c785bf19d4f70f16e59ac8b9519c312da61213d3d57351d"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE331FDE592768",
|
||||
"hash": "39d8f5498df1bc4c61b4c64067eb600d2432700a7a7b347ef479d147cc48b067"
|
||||
}
|
||||
},
|
||||
"0.8.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE318837735476",
|
||||
"hash": "1dd19afbdbce747c3f471133fc22cbf60ea66cae6b43231a0f165e6f075012a6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE3188886AD3F6",
|
||||
"hash": "e6fc2cd8a67966aea7a83703904614fe90d4963bae03cd7ec9f68609b6600bc8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE318878EA58A5",
|
||||
"hash": "51e9282a6c4a9f16ed824dec5bcf1ba72afd75ebfe6e33051a5e1f46a6d7796e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE31883D28A886",
|
||||
"hash": "82addcc4f74ca10209e916e881e99609b9e4f94413cfeeafa7df2b022999e928"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE31884121C501",
|
||||
"hash": "342265e2821cb5c47b98ad20ebf44f3b7f3e57dbccdf1678b9cfda262ca978b4"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE31888291F313",
|
||||
"hash": "d863436807540e78a04435f1d15c043f03a9ad2f1733fb8fc4f728656c830602"
|
||||
}
|
||||
},
|
||||
"0.8.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDF749BA4C4E93",
|
||||
"hash": "3d0a79ce63391a9aa49504d347af03cb716ce9abe6a12673d005ccdf3d9a03f6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDF749E2B375AF",
|
||||
"hash": "6b6b6efc3cd15c89424020b16907790ba3677f2fee9d9973f1ffa6c9e530a7f2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDF749FFCC9E0A",
|
||||
"hash": "15aa6e7b7475e6aeb7498fffdb0034fc322b2023beac14b123c36c5a641a8826"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDF749BF04FB14",
|
||||
"hash": "797bee53a904aab73b31c923da521b72ed5d4ac950903c928f6be3ed236de8b2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDF749B6DDE80D",
|
||||
"hash": "b6f84a64e8be177b7ae61251388cee50349cfb195acb493b37d036a2525f4dd0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDF74A03662C38",
|
||||
"hash": "8ab359619da69bc25a59a7aa9b1abc138b4662081b307ac55d0b015d41879fc7"
|
||||
}
|
||||
},
|
||||
"0.8.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDF6840A60BDBF",
|
||||
"hash": "fe84192a404e76659fc0f5e56b3ee01b24a0b1fd05687392afc4213f473a303d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDF68422AC133C",
|
||||
"hash": "684a02803e7a281b3b0f5bb33ae0caa84b4b5aa7952844adfa0c27321560e2ac"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDF684593E18FE",
|
||||
"hash": "061debfe66ae97d4794d08d063fc2d54c9eba067e829a6fb3a70b2abee939fae"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDF68418071268",
|
||||
"hash": "56ab688c927304035dbeab1fd9f0980bc50e6bc3bb5f29aa21015d1234d15229"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDF6840880F9AC",
|
||||
"hash": "97e84006e6056cd4c1bedd5bc6d835c5e9bc8339f94ee83fa09c91300ab99255"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDF6844DFDD575",
|
||||
"hash": "9c5dfb3371e458da925e6acd3db22f2372228df47337c862e8986b49048fa17e"
|
||||
}
|
||||
},
|
||||
"0.8.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDEC484757A5A5",
|
||||
"hash": "b53515a1c85f37810ae03ed03a984cde60282eb1fba08ad0888bd9a62f7d5629"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDEC486FBA6DCF",
|
||||
"hash": "cc5432b254240c069f54aad82a7677af767d07e8a45c991dd72153159814dbd5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDEC4888085289",
|
||||
"hash": "1059bde5536bda824ab6539ff243c549006335006dd16809fe65d9b747e87ce6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDEC48518DBD4F",
|
||||
"hash": "5252105ae48c57cbb331bbe010f92faea681f5b65f79a92e1e820dea3bd11b3b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDEC483BDAED02",
|
||||
"hash": "7364b870e0e61fc30e3e820c832c43b474a17a2dfe01a42a056b796df8b65ab0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDEC4897711780",
|
||||
"hash": "fd90f6c2a80d7260349efe48805752adc3b82bf743d3245f037de8dfe943c3f1"
|
||||
}
|
||||
},
|
||||
"0.7": {
|
||||
"version": "0.7.1"
|
||||
},
|
||||
"0.7.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD6790735388F3",
|
||||
"hash": "395cde37f70a77f2bdb0eeaded96e294b0338482b937b0e813f61d1221f06642"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD6790A6CDDBB7",
|
||||
"hash": "63d26a1ec55b62dcc9030da9fd1fcb572185d37ecca79a977dae09193ced2fde"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD6790B7D97528",
|
||||
"hash": "ffb60fc16f8d6928a76ae0398dbcb11ea80e48d0b64fd2d3779db989771db9c9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD679081A9053C",
|
||||
"hash": "865ad7dbf0ada7d908544ecd54d7e894fd327eca61256b10ef0d1203978e4050"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD67907D426107",
|
||||
"hash": "4fede12feedc8e50ab636714a62b5abe03fd70fbd68c7dbafcbcff41671ccb99"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD6790E024AA71",
|
||||
"hash": "9a3fc39d2a7f37dedc177457150f70e7cd254118343d4c38f1d10ca4280d74c7"
|
||||
}
|
||||
},
|
||||
"0.7.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD55699098CFA7",
|
||||
"hash": "b1edf63e9f1f9b4518ee710a2a6b91c23fb5a151ee51da594c0c627cd2523c9e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD5569B2719761",
|
||||
"hash": "db1f525fdccf91e170f35d92c6636ee58c1d2ad0cdf662e0ab656d015d0b8064"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD5569EDC0F8BC",
|
||||
"hash": "08c072c9cf08a5e5806ade46866f1c29a23a0a9d77b55dfda54e7e3386769307"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD5569A1A6D9FF",
|
||||
"hash": "11b0864686228ff4d245587912ad86b95c6fab5860e7cd086f6afd56fe7f7bcd"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD556995B9DBFA",
|
||||
"hash": "be0d6ad2b4a295bb446d083101177f28d1c4ba2b1d3f121d20561eed81d3ab69"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD5569DBB649A5",
|
||||
"hash": "903de6e1af39a2b6d50bc89c14188a7da293fdcdff01caa61e464678e5f2346d"
|
||||
}
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.6"
|
||||
},
|
||||
"0.6.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD088F6504BFF4",
|
||||
"hash": "df1b3281a8ba2aadbf673ed4c888b43437fec775071b532276cc0d39ef6953dd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD08902049CB9A",
|
||||
"hash": "ce1ea95c25c776a45779ef007d96d90b3bb8b4da7a34985cbbdce2889b8fd65c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD088FD87C4522",
|
||||
"hash": "da3b3c6abcc4be33158c7ca65b88b0f957570afa1d97cc75daa082c45498bb3c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD088F77C152F0",
|
||||
"hash": "236bb51e3e64e36e6de2375ec2086ca6122293bc3e7a4160f5ca2cee53b0ef82"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD088F5B5C6692",
|
||||
"hash": "5bd16b9c8f698ede7a21eb9a64f44147c96540319736ced47166d37249836da3"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD088FEA3DDC78",
|
||||
"hash": "f01535fe4922c96ec1c93878019063bb09911d6c3d3626096c55877d2a0de2ac"
|
||||
}
|
||||
},
|
||||
"0.6.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD07EC23F23A8F",
|
||||
"hash": "41dbcaa32974315f7d417f64ebe74543064b808c92dbb54560f96acccc79d85f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD07EC64B8945F",
|
||||
"hash": "d38e31f9515d2fb64217e9de2f6d7032a2e50223be2c10ad5fc5d0a38e9dc97f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD07ECA17E8308",
|
||||
"hash": "4cacb9c4ffe17642a53c63cac29fb77cb9494a4659c36e8f212de86f83b66cc7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD07EC3AFA1694",
|
||||
"hash": "63c17c36c0e5b27d195773b61587977efcdc0e98c813a75fee6a3ec53ad768ec"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD07EC27434F34",
|
||||
"hash": "45725509b29258d82b9f080554b631f9c14a7929916b519ce7586f9688ba5e79"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD07EC8B42FFA7",
|
||||
"hash": "b3c9517a72ae40b1d2cd1e23b8255d571a74a273ac9f382d5995120a4f72b92c"
|
||||
}
|
||||
},
|
||||
"0.6.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DCBACF67582810",
|
||||
"hash": "7c89d041cf54d413aea14ee873760b4f46da08ebb66d9276f5608a476fc91dfb"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DCBACF7D3F8427",
|
||||
"hash": "9e454d719b5ff2d030824edfc9b0d37f514045bda2c65bf25e7c450a5f19a74f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DCBACFA6CC0760",
|
||||
"hash": "765ed6108325d7663c57d6a4ed1bf2a7abc5fd00b516192005aec6feefbff88b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DCBACF71E54A5B",
|
||||
"hash": "0ee36e39b51767305b3721164c16cf5a314bfda0a73665c4fe4a3f1a76a3ce5b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DCBACF5992DB90",
|
||||
"hash": "49ee6200c7cd6570acf5d9c4edff3dbe98ffd492c6a85552367d3ec1c6b1b7e1"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DCBACFB1286584",
|
||||
"hash": "50fe48d01660c15d699dfc7db5749685cdb915e14724728cb2455dfc8b3ab0d7"
|
||||
}
|
||||
},
|
||||
"0.6.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DCBA9C06F38BE8",
|
||||
"hash": "eaf70ac6f190fba76911666e5ca803e49d3d1bc4622b15afb01d0e6ed9b4d81d"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DCBA9C299FC3B8",
|
||||
"hash": "aca00497e9d12bab7bbd2beb0e06b6984062f3be16d0089405b0b9466e8e7437"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DCBA9C387EB905",
|
||||
"hash": "31292109640205f3e5aac60a43031b2e4aa3dc30020df1ca4c6ebde19887f030"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DCBA9C11F8B276",
|
||||
"hash": "d314922eeb6b3b724d9ae74f10537ea5420ff2fa9499bd6eda66d8cf84077dbb"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DCBA9C1681D1F5",
|
||||
"hash": "a0d71f4c5258e89c6c1349dd802b14477a0b94b90ccb36e74a530b8aecdd720e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DCBA9C525796E7",
|
||||
"hash": "2713035867c45e472b357fc5b90d784e510748e6e51b75f62a9e46122428aa68"
|
||||
}
|
||||
},
|
||||
"0.6.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC817415154918",
|
||||
"hash": "bb5ae5d2ab339b0d3163ec7c7e73599bb75b69040b850034bbaa2a773feae409"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC81741D1B3E7B",
|
||||
"hash": "37a4ae5989a8e5692bcd3b8d347e9bd1113cb113c1ed75e26a3602deb27cdfef"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC81744C56B5B3",
|
||||
"hash": "7261472828ff2058d50b0d6da956ef10b390b13d38b6256924e8d22d2f6c758f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC817423D568CA",
|
||||
"hash": "4caa6f8199df923cad0d791814dfafd9b13c5b589b612ac0dadc826bd54d92ae"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC817407750CD8",
|
||||
"hash": "27160dfe095eabda5755b7a340df9b202b3d3dfa6e5df30ffa2ca6aa2fde5d26"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC8174758FAE73",
|
||||
"hash": "ef8fdea6fa7f22e99461ca135375e7ea6b2a023a396d8a2f79d0c1d2c0cf0006"
|
||||
}
|
||||
},
|
||||
"0.6.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC1BFA0D60674D",
|
||||
"hash": "9357b168c9fd6bdeec79304b370b92a3b2ba8dcf4dbad41b3ec3946ef5d7207e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC1BFA370E1457",
|
||||
"hash": "718f82c94551b92d2c693b13ccfa748c8d7549f63682cc41eed83ea85ead6e8c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC1BFA7E292F78",
|
||||
"hash": "8e36e2d84725c839a58e741c213b8759c91f766ceba22ec020edf14930598ebf"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC1BFA1D8B2B87",
|
||||
"hash": "252aa665b5ba7c4dd7aa09072b4dd447094c9d622161d29877973a9151276bba"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC1BFA35FF348C",
|
||||
"hash": "ebb8726ed79330cff7458bfac285e76e01eb55b64df92738379027c05bc28b7f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC1BFA6674B984",
|
||||
"hash": "625b6a710f516267b8c2522c1eca44c2c3de4e022cf9377e6041348e21f343bd"
|
||||
}
|
||||
},
|
||||
"0.6.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DBFBCB023CDCD3",
|
||||
"hash": "154a502e66cc3df208a047854405623fd786d5518282684bcf102d62ca4a3189"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DBFBCBB2662A4A",
|
||||
"hash": "277a4abf137114fc07d3eea0832e6fdfaa0e45908ea3337ea640ac06be818189"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DBFBCB63118259",
|
||||
"hash": "9c637a71322952e5f0efcf666e7e8d75ae3b08d1441768f23ca8f3482ce34f44"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DBFBCB1B5AE215",
|
||||
"hash": "3fa6ce8a4f28e60b4c940e4eba3b4a1161eff3dd99d9950668487d7d652dbc03"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DBFBCB88B97014",
|
||||
"hash": "1e7ce9837a1d557c1d4963a56d7f327a35d0139477274184cef8d7c09ded6c37"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DBFBCB6F56C225",
|
||||
"hash": "262c4f528deb6247d432b9ee94844437979f1ef1dad147dd92cc4e9b0c457ea7"
|
||||
}
|
||||
},
|
||||
"0.5": {
|
||||
"version": "0.5.7"
|
||||
},
|
||||
"0.5.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DBAB9C27D7F7E6",
|
||||
"hash": "f378250e019684718f550ea540d7fd397cff8fe7e15106b0e6521df20a40be11"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DBAB9C38B92F74",
|
||||
"hash": "97a709645c70a3f303668a7ce313a8f5c98ec022660fc789aa30be661b620e4c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DBAB9CCE580EB2",
|
||||
"hash": "aed1a972cd5e8554e24641e2cdd45bf05fab88f864d8af89107b41da14737bb1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DBAB9C40DA0941",
|
||||
"hash": "3704a62de9f0181033558b8df110754a009e6d90d9ee6e333b39e700cfb80a81"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DBAB9C3CFE672D",
|
||||
"hash": "e3c07e5658a025f7233dd9309f731f247bbff1b09f365e9d2a3edb42cbfd1d00"
|
||||
}
|
||||
},
|
||||
"0.5.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DB4628C97FDBF6",
|
||||
"hash": "d9514750f0634bbf5f2009f941ad71cb091f002464591079d19ac9902eb22b42"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DB462914092060",
|
||||
"hash": "752a8986da54fb7af4f552d76dd5dde842f1932d07df7ca1b8509dcad9beeaf7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DB46292EF9213A",
|
||||
"hash": "2081eafaba029dbc8b10af09533a173852b4e04608f947cf90f464dd1bce43fd"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DB4628DAE734FD",
|
||||
"hash": "af78951785011dc9f202f7703943651ed6abd6fc9298a318b387d611524b00e8"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DB4628FE19D00D",
|
||||
"hash": "42b64fea6def6780d200564be88d59276e6ff57403fa2dabb562485c6aa9edb4"
|
||||
}
|
||||
},
|
||||
"0.5.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DB293272300C58",
|
||||
"hash": "9d4aa5cde458f268d8bf7d06c6b08600a2a316a72fea8ed703751ece5a42a0d3"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DB2932CA2AA9D2",
|
||||
"hash": "34531ed28b59e1f179808aefdb949e3ae31f0418ac74c70ef38964aa15ffd024"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DB29331542383D",
|
||||
"hash": "175fa3a9312bdd9fdb3fc30ae38a7e39d1d664c77681f872bbdff6e807b79e22"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DB29328A94AC1B",
|
||||
"hash": "fc1397cecebed6237f7fdcb1e8a715b990b724aa32b2050ea1f31ff33fd5dff1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DB293327360077",
|
||||
"hash": "2705686bc48d4279c50990f740f2f1e479f60f4d99719698583c6f495398109e"
|
||||
}
|
||||
},
|
||||
"0.5.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DB04A1520C4424",
|
||||
"hash": "dd7b6f1939375c5b00061c2ee48a32b4b8742dd8c479cf6a474e4aef03cf53c1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DB04A2E89931CC",
|
||||
"hash": "114ce004c63af22c63acfbbb02578f73620a7792a2b3d075da607d3a8e738bf6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DB04A1A6E14CB0",
|
||||
"hash": "6ccac3371e408806cc20c5cef48b801e8898a974a28be364790716a627f0b088"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DB04A1577F8514",
|
||||
"hash": "155fcb80a59a1f12fa76c5b50a2ff824a8566022c7d004246a8cf70ac09b5ac9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DB04A1DD7C2477",
|
||||
"hash": "883bcdcbf7b2b40287ea69aa5729a829155df2eae10de6fc1380e03a779431cc"
|
||||
}
|
||||
},
|
||||
"0.5.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DB0077D30BF53D",
|
||||
"hash": "9783271dd0b51e64a11f5c97809166cae2b7fd29f191426195c5d5588c4b7356"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DB0078F0A2E2D5",
|
||||
"hash": "eb5181bbdf04e89f190f45c3f06612849110dc33a22d9384a539eb8e067f67dc"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DB007844D5215B",
|
||||
"hash": "3373c8d88c59c76f3af8dd28451da6e63e50280844e17fd0c1ab5b3537227f17"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DB00781B3E2F49",
|
||||
"hash": "fe22c33ac11037de56d281451fa468e6d80e4427c99469644a2ccc493345441c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DB007896233BAF",
|
||||
"hash": "a19127e07cc626f17effe1893f2d6261ca11facb90f9f246069856d108180cb2"
|
||||
}
|
||||
},
|
||||
"0.5.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DACF08B405F296",
|
||||
"hash": "f87f527d0f658c4d7f8b8c30305ab2d6cf1e0244721512efd21c024cc89f520a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DACF092E5E6402",
|
||||
"hash": "f15da97f82332cbd7666d7c53f53488f37602b425b993548808ade61b0415c0d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DACF09669A0312",
|
||||
"hash": "ba95251b1f646dc6291c1e331e8da7b390b7b08e1ed5f0e21a5e51a3dc616c87"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DACF08DE622B08",
|
||||
"hash": "8356a367d32e2aa8f580f6beefd21cbb26947dd9942a383511e41bf21540466b"
|
||||
}
|
||||
},
|
||||
"0.5.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DA16D1155E6D95",
|
||||
"hash": "b96621b6204e0027ab9cabc76df224e2b770f565aca8c70b62827e8629123d6c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DA16D1B14EF415",
|
||||
"hash": "728085720dbd8babf3f85332b8fc1254cf1d72895244cac3394b542c9a230134"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DA16D15EE32A8A",
|
||||
"hash": "26b452f4631690928a3cdbbc64960fed930af6866c322b804593f5c55e443219"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DA16D1760C34B7",
|
||||
"hash": "c4d61f03e15ef9a8267deb0acf53b926d69308c1cd8b843de019abc817656d3a"
|
||||
}
|
||||
},
|
||||
"0.5.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9FDB6F1AF37CD",
|
||||
"hash": "7b41942cbd428bc6940204fc95b31f00fe5765f6c47df63fb67ce41efe617ee0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9FDB7FE39F9E2",
|
||||
"hash": "4303f8a02022bebc6f5b5716b2e8a1e6df186fb311d664c207d7ea39ecd9ebd9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9FDB794D6E867",
|
||||
"hash": "af8dbcff84b640640a404df10619ca8baa95fe7be18c4c8730aedf57b8dd661c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9FDB768E3DAC9",
|
||||
"hash": "110bb7b7a9dad534c0dc9a6257d2758a75f917975e8ed2497cb509d3a0a838e0"
|
||||
}
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.8"
|
||||
},
|
||||
"0.4.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9FC762DF963BD",
|
||||
"hash": "d0e7b8faa6d8b3bb0031cdca87eb2acbfa359bc0b50e664a26dab1adc219f5f4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9FC7673BFF5F7",
|
||||
"hash": "85ac124ea4d6b679a47854da50c87d60c6940a3460d8e18a9072047f63fc5f95"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9FC762E9AE361",
|
||||
"hash": "99163e3a006985a838cb5564f2832de3d06b1769e21dcf7e30adab0046e44387"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9FC7694C9326F",
|
||||
"hash": "a810f956bb1d9966488a6e7b1eaf7774bfcc74eeaacb336f75097161db21e9c0"
|
||||
}
|
||||
},
|
||||
"0.4.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9EBA839C8DA6D",
|
||||
"hash": "1530c570416a5acfef6fce08b3601525d8e0079275e018200f2dcdc2b7dcc570"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9EBA91C4A400B",
|
||||
"hash": "0edfbbb562666e0582d2683f45a8b67a65d2aefe665fda0f9fd0689fd0878027"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9EBA9A483A3DD",
|
||||
"hash": "91e2752d6ff9b0ede81235181682a401dc87fb64f35740f2829e31330d9accc0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9EBA88C75AC62",
|
||||
"hash": "aeaa3bd2134520ff0034d279fd81735e043e3adcd2a8afb3c231f7734544f537"
|
||||
}
|
||||
},
|
||||
"0.4.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9EA3879951CB2",
|
||||
"hash": "9b305047556dc120c9a6be15f2beffc6e7ed19b6843887ed6191db67661ad997"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9EA38D5AA11B1",
|
||||
"hash": "f722f524c14391b7ef9a77351bc38e387c995d55476ba818933ba45c7405e4c2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9EA39046E958A",
|
||||
"hash": "1640a16c415d93ef63206719c899cbd8f351571e8717f6fb41c022620975cb1a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9EA38CE821FFD",
|
||||
"hash": "1bd2eeafa0b0500073fa44b07ca3ddb29e0c8af563d570f0a28829adedb78e9d"
|
||||
}
|
||||
},
|
||||
"0.4.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9E7C372D63175",
|
||||
"hash": "1ec7920bd82712a131abaa18791f953e730ae233a22a28e0e0513473a0969ad9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9E7C3CD2BD546",
|
||||
"hash": "caaa648aee7fb828585f7b889cce711e0f0f0978779503b9059470ff7d059a2f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9E7C41E26B009",
|
||||
"hash": "0029303f85626863d211408297162a982392e9eb3b50ccd43b71a3252fe43acf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9E7C3EC569BD8",
|
||||
"hash": "43b0fdea410e48ab7990349fc0cd2c47b29d4bc56e80fca9f0902a5c8ce99029"
|
||||
}
|
||||
},
|
||||
"0.4.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9C5F33A4EA17E",
|
||||
"hash": "766e70a4e36b15ae01096a8dd67f20051a49bfb827e8854b0512782cf4a4dc63"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9C5F37E09DB0C",
|
||||
"hash": "7224bbf3c5bbf7a1ef9156adaa5fb5974baa2c5f21dfaffac0aa93a919d0805a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9C5F3C7A936D8",
|
||||
"hash": "e16afaf0ae5ebe63a08b196f5011229513f4d5a8229aa99b3c30d2447673d146"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9C5F38D185F33",
|
||||
"hash": "0d5c73ee54e9757bbc36db7efeefce58defc38b9999697e8d0bcc19ba6cd3c20"
|
||||
}
|
||||
},
|
||||
"0.4.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955EB6D07A3",
|
||||
"hash": "058aedcc5fa8946b509a39bdc2dc41178f8792485783bcec5792dec05e6a4a46"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955DEC2EA70",
|
||||
"hash": "a15b4ccca640ad9c42718eb72739419e75fea6d68e3b69e7a49709ec9d6282dd"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955D354EE4B",
|
||||
"hash": "0acdaadedc67b62abb5dda5705c60e2f78934ef56b98f647f0f8601603adcabe"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9B955D297FC45",
|
||||
"hash": "dc0c441a67489a927f11396b7e4bc62d9bbf5905d35183b4a2336272aa7a1746"
|
||||
}
|
||||
},
|
||||
"0.4.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955D2008DF6",
|
||||
"hash": "4ace654a8fc49ce4e9d849858834a52d9a73f01470842349bfb1c9c7b595f370"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955ED59C071",
|
||||
"hash": "50ecd808f9254626778a84682ba687a6a9154cad321934630262f942f8966f6c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955DA0D1C9C",
|
||||
"hash": "93814fb262487ba765f92c5c62f4a447780002715ae2961bdbf58758c0893241"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9B955E7118130",
|
||||
"hash": "add6549fc51ad2fa4c0680b79c0c69932f2394445cb14ad486b72da14c40b17b"
|
||||
}
|
||||
},
|
||||
"0.4.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955DB4964AB",
|
||||
"hash": "fc24a72c52da34b029d12c35a2693639884d8420e684b1eff234d8d005392672"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955EC2ABCD1",
|
||||
"hash": "4c732fea961829e7634919b76225432c33a1e446d6bc01ecfec1a59052d5ade2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955DBFA2380",
|
||||
"hash": "c0eb6071022f0a3ba3b7366b0e7cad57b7d6047366f735503d3d74039cb650be"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9B955DD44C160",
|
||||
"hash": "916fedafded7c5f6abe1a6fcc2e348a7f6ef7ceb987a511a785b6fa50a16f4e6"
|
||||
}
|
||||
},
|
||||
"0.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955E5B8DBC4",
|
||||
"hash": "0a6647b812c897f43da18536b40cb987d38f2b6f22413086499c3bf8b654a95f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955D689AD40",
|
||||
"hash": "bf4afc6e1b9ed607eb2ead7bc25f15413632cd0352f6806a02b3ec85a82c172b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955E739C39F",
|
||||
"hash": "3a9235dc297df03db4b7b40379458b4fbb4265aec2cb8f5f11b8da36f9a074ef"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9B955E3F2B7ED",
|
||||
"hash": "087fc703525444c6f636005952da0654a739f630a7f65f8aa70b0306089272a9"
|
||||
}
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.0"
|
||||
},
|
||||
"0.3.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955DED314A5",
|
||||
"hash": "6c4a72c097c0ab1cfaded1c3337c32e16489a4d8a57fa222b48c113cff47e01e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955D3333A8B",
|
||||
"hash": "c0d2491f949baf6be3eaee086dde13efcde0820320925213c781eb4b5280fbd8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955D30EEF25",
|
||||
"hash": "597b6ae7afd7ef959fd90b119a19866b67cab17931a516992d539e37ab30ea36"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8D9B955DB2F02CB",
|
||||
"hash": "d1561dc74ca5ff053674bcb02bd12a617f1fc9b0f12ea418057b2736afa2390d"
|
||||
}
|
||||
},
|
||||
"0.2": {
|
||||
"version": "0.2.3"
|
||||
},
|
||||
"0.2.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955CEA894E9",
|
||||
"hash": "58103c5868011f468ebcc5f148e30ad3e7f68c60b203aa591274f81f33c0cbde"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955EBBFAF0C",
|
||||
"hash": "a68b6c8c3231f1d42b7c2f1dc6679c0e5933dce84a292bb2cea30aa64570edcb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955E2DC68BC",
|
||||
"hash": "cb378ce6a51867485cbc74a3e4e886a4975a6264526448a30199fcf67810b404"
|
||||
}
|
||||
},
|
||||
"0.2.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955E4908DEC",
|
||||
"hash": "5dd3029c29dcf414c600b0c060c78f6cdce3065693c4215b15aedb79814a09f0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955D3E188BF",
|
||||
"hash": "ff6ba429689c2d267e684324d7963fd615a480ba7182323397f82a16add85b6b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955D9B4F7B7",
|
||||
"hash": "04ca0bcead45946a2631e20a09e528148a2a2b92959cdef9bd3143fe9df92aab"
|
||||
}
|
||||
},
|
||||
"0.2.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955CF989D29",
|
||||
"hash": "2469e0c69bd88811aec0899059d9c7a7ec85bb5b2b344e417220c243f29d0f3b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955D76398C9",
|
||||
"hash": "e361b04c28aef6083c57e8eaf8f0007fc4c9cc373b1c8191bb9dfe30c27d29d7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955D7FD02A7",
|
||||
"hash": "3989b015736adb9d0c3f1485f5687dbed43c8ad7763cbd83a72e11446d88b2f8"
|
||||
}
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.1"
|
||||
},
|
||||
"0.1.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955D56A37A6",
|
||||
"hash": "5afe669544ccb8a09f74bad0ea7dd9fbec85c3c85df78d36de4f4e05ff259888"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955D78F361B",
|
||||
"hash": "388815a7dbad88eb046dfaa935fd1bd8ad5bbde319415c3f1aab1bb896831c79"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955E5406281",
|
||||
"hash": "52bc2467174f6f891bd62549d7d4b62904e1748683af6b22cb4455ed10830208"
|
||||
}
|
||||
},
|
||||
"0.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955DA288FBE",
|
||||
"hash": "e4f0b604a1e5064dde8092def2842793bbbc0fa5926d10f72bbd7ba1e9c6f2c3"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955DF496B54",
|
||||
"hash": "c8443c6bab4d919bc14debe432ac87dbeb25fa148cbac4f1ceb5755b326e4690"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955E3D7E100",
|
||||
"hash": "3f94dd2c3cd5b5d87906f12f64694eb261080ee3febdb135239342266535ec4f"
|
||||
}
|
||||
},
|
||||
"0.0.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9B955CFED672A",
|
||||
"hash": "d2a87cf7d3841cda2dceef762bf946b0883df9b1c1b168f11e800cc74e97000a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9B955DBBCAE92",
|
||||
"hash": "0f7a720b806f9bbab3013a935995435d0632c74f05f81f44fbdb2f98e2f4bf92"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9B955D5975B5A",
|
||||
"hash": "f3d0044e554a581f06e21d44666e7b0ddb175ad74a11849813beeb5d102d782b"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-apple-runner",
|
||||
"template": {
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/madsmtm/cargo-apple-runner/releases/download/v${version}/cargo-apple-runner-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "cargo-apple-runner"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/madsmtm/cargo-apple-runner/releases/download/v${version}/cargo-apple-runner-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "cargo-apple-runner"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.0.1"
|
||||
},
|
||||
"0.0.1": {
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9E56906B2739",
|
||||
"hash": "66e53e60e1502d6c6e57aed9c423ecbe9f155fbcee56824a20eb72c49136a554"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9E56816E1F2D",
|
||||
"hash": "58b94a77328568eff1c8d1216f51933c0753d20365b2284cf3a1dca843a6d0c1"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,326 +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.4.3"
|
||||
},
|
||||
"0.5.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DF0B8E652CFB5D",
|
||||
"hash": "0e883786931a8f52edef7cec02e283e5732452571fd6496e4d5ce5d9d4e0d240"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF0B8E652E0B97",
|
||||
"hash": "73858a47961e422889c10630f8dbe865c1eb291f17fbd37d3361824d6ff2a9d6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0B8E6530A0C3",
|
||||
"hash": "9cae48685b1096f8d9b70f247dc6bcf4f102ea1c927fac0f8fc64f7bbfc5718f"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DF0B8E653C2CD7",
|
||||
"hash": "09cab178fda646998192edeb2c14243f13e7600e55ca8e4d715a79ac0a102b72"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF0B8E652ECE0C",
|
||||
"hash": "e74c5ba280a484efef63d60e842d725240bd4aa683d9eebb70200911d800e7a6"
|
||||
}
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.3"
|
||||
},
|
||||
"0.4.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEF3A25D802A37",
|
||||
"hash": "6caccf4893704edc74d7014dbb1e022d7c64ef7cd293087519ca7bc1d8c02285"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF3A25D896EA0",
|
||||
"hash": "1e4ad8fe1f69fdebfd30033590cb46c92e542b7688c38fdbbcd70db56a11bd8c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF3A25D87C2DF",
|
||||
"hash": "930b72cd90f48decff4b40cda3b9d086e709a11ece17a07621a73bbb3480e531"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEF3A25DA19663",
|
||||
"hash": "f49866f3f3e1f1ba4693549092d54746cc2426e7122fcf43b30bca04b0d2736d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF3A25D863DE8",
|
||||
"hash": "b2929a1291e40a0d8a0484764f49abcdbd16dc3c543e9e7ce8028a2a75d942a0"
|
||||
}
|
||||
},
|
||||
"0.4.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEF2CBF3A8ED68",
|
||||
"hash": "601ec4db2a4a425c4f93918326e3d32cff7d44e42eaab15b93daf69ab415684b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF2CBF3AFEA6C",
|
||||
"hash": "6e4122838cf0fb74e42d3df50020a2bf9270e0fbafcae606fec683d7a96e31ac"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF2CBF3A988FB",
|
||||
"hash": "3d4f68bb72723ccd48485f839659b81e43feb62ee172d023d1d2be1319e34239"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEF2CBF3ACB9B1",
|
||||
"hash": "4c23347eacee529fcacc0dc5802354dc0e308d78172efbb4d0039597ceaa9c33"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF2CBF3BA1832",
|
||||
"hash": "33e8e8228f1c0d71dbf0542b3911f40a6d1d33d7176bc5aafcdeb9dbbc54c2b9"
|
||||
}
|
||||
},
|
||||
"0.4.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEF0B1198F8792",
|
||||
"hash": "510484c0564f4122bd33d0c4b455c4e8ff39aa6d92f172f6c131e56cf942d100"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF0B1198E2985",
|
||||
"hash": "ca6c9083a6af4362d02b900619cc39116e42b9acfd0b94b44bc107743df4bf00"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF0B1198DDBBB",
|
||||
"hash": "c97ed9cccc512836e6c07771f2ddcd9c1def456cb12acd769e52cc155d547e64"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEF0B1198F39C3",
|
||||
"hash": "2296dc2a4a4972d9dca8718e162810afd0a5b0fc82fbe46f3aa0306a082b07c8"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF0B119924399",
|
||||
"hash": "e19696f3bf0e6797490d41bcc777b7a349682d799b958cc09be12dc6a4333835"
|
||||
}
|
||||
},
|
||||
"0.4.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEEEEDBD8167C1",
|
||||
"hash": "d44ae57b0988e9e8cb33f40e1eae16343d76914e188a388da38f4dbf9119fbab"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEEEEDBD8C57F4",
|
||||
"hash": "9dde4e7b134082808ac2a2da284df062a2023bef80986bfea8032b52c475f401"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEEEEDBD8A376F",
|
||||
"hash": "2c4079e00326eec37a9b06dc23263fb2ba3e56ac53d14d20bf9f3d07d2bb29b6"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEEEEDBD892739",
|
||||
"hash": "7889a302f83834447346acb3c4af6fe8a2323d2657692575a6361f4c686eae30"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEEEEDBD8CA5C0",
|
||||
"hash": "70c90dd1b1edb94240b6760696b77818f92752a26ccd6b4c097ee75db11206e4"
|
||||
}
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.1"
|
||||
},
|
||||
"0.3.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEE59E05DF42E7",
|
||||
"hash": "0b7dd41d12805354549c9e9b8b05eddc2b0c819e49b2c2d6c49629a631eee0bf"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE59E05E508AA",
|
||||
"hash": "59badf670f7cfa32a528f4931c8ac3903eae46b5b41c1025985f72a56dae8fd1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE59E05DCD489",
|
||||
"hash": "c3b5e19820cd8aa221953c454da1c50787c262c1c71f7c25998cd8c021bbfaa6"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEE59E05E508AA",
|
||||
"hash": "4ce2affcdb03e128c7d93827276fb745ee685e083ab533c8f10106637020f41d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE59E05E4E1CB",
|
||||
"hash": "7558d569d96721e600722ecb7cf25952208eb9b79dbe81a3b0c22ecbb5907b3a"
|
||||
}
|
||||
},
|
||||
"0.3.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DED0415918ADA0",
|
||||
"hash": "0e9e3639d8a49fe2fab3aee3554d04845ccd7f46ca20e7211489402d56f18d63"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED041590F902D",
|
||||
"hash": "6997ed7f0c4e15fd18a4b031b44878fb5e375a0217c70764373adaf9012f4fff"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED0415908BA0A",
|
||||
"hash": "57554efc37bb78c6c18b21ecb1b2c51d4beb63bdc7e588d75f686274b673b088"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DED041591AA73D",
|
||||
"hash": "b8a8ff9eb893d157d5480ca1a1deddcdde4d6808760950565a5bf463b414e2a5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED041591299FC",
|
||||
"hash": "024343f33e055ce8cf76e701deaa32ef1c4f916810917f0cd93bb7d9cb8fbd8d"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,872 +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.7"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.7"
|
||||
},
|
||||
"0.3.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED93BFD1406F8",
|
||||
"hash": "97f9269a23837918be8a01c18c46239d060d87bb070f65625381be4a41159eda"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED93BFC91393C",
|
||||
"hash": "6ae47376c816f66c0191adea1fec0bd70b05e85f8a10ba42bd3ca8e3adf0748b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED93BFCBC10A6",
|
||||
"hash": "041d4d2d59020325c28c6fc6f64ca8fea0c9768dd5956817bfaa78977e1dd64e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED93BFC249E82",
|
||||
"hash": "9b3c24b16fa3ddca29ea9e8e17df9607d864c406365dad468c6d5f6fcc37bea5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED93BFC20D231",
|
||||
"hash": "f5464add2ee2778eb11189be1e2f1721d6f30aa47b2cf4f00172962738d99e42"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-spellcheck",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.15.7"
|
||||
},
|
||||
"0.15": {
|
||||
"version": "0.15.7"
|
||||
},
|
||||
"0.15.7": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DEA7C00640F8EA",
|
||||
"hash": "6c944067adde19558aff6b6eb0003e82a95a52ac9dd75465ba3df894eeac5b74"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-x86_64-pc-windows-msvc.exe",
|
||||
"etag": "0x8DEA7C002803985",
|
||||
"hash": "fef4eae8bd21d1edac52b00c7729fbabd7ad47bb6053e29025d62adb2746c93f"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-aarch64-unknown-linux-gnu",
|
||||
"etag": "0x8DEA7C0074205C5",
|
||||
"hash": "22c5ea30ca4bc86004022cffb671bdbf971d66f2dd564397e8a7647cadcf3ec8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-aarch64-pc-windows-msvc.exe",
|
||||
"etag": "0x8DEA7C002536910",
|
||||
"hash": "cc72699c01f192f160d2c402fa44efdd56b9ff5856c5b1d4cd5af1631ded48a3"
|
||||
}
|
||||
},
|
||||
"0.15.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.2/cargo-spellcheck-v0.15.2-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DD4A85530EF13A",
|
||||
"hash": "9b36eb04e83aaea2c943064fbb2e5a04d37a46bcf51dfd99495b74b09ff56455"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.2/cargo-spellcheck-v0.15.2-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DD4A8564500872",
|
||||
"hash": "5d70eac68be1dae5fb69439217581f79e642867ddd4b67ba258e224de6ff82a2"
|
||||
}
|
||||
},
|
||||
"0.15.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.1/cargo-spellcheck-v0.15.1-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DD49AEF852F898",
|
||||
"hash": "b96e4e73babd959aa138d1629b143180e83ebd8461064fa68e99e2e961560029"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.1/cargo-spellcheck-v0.15.1-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DD49AF09E6176C",
|
||||
"hash": "53e697b1016880ffe864dfba9fda68c050694644267557450881d52d9eed987d"
|
||||
}
|
||||
},
|
||||
"0.14": {
|
||||
"version": "0.14.0"
|
||||
},
|
||||
"0.14.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.14.0/cargo-spellcheck-v0.14.0-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DC6466EF3038F3",
|
||||
"hash": "6f35073843f2eb87990ef19c841c61ded5263e3a7ff38f885cfab22193b84f13"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.14.0/cargo-spellcheck-v0.14.0-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DC646705A424A4",
|
||||
"hash": "ad97a1471b7e718902ec385c3ad045a6afbc986f736d0c4986855ec99a79c80c"
|
||||
}
|
||||
},
|
||||
"0.13": {
|
||||
"version": "0.13.2"
|
||||
},
|
||||
"0.13.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.2/cargo-spellcheck-v0.13.2-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DC0E0760B5DD94",
|
||||
"hash": "f547b8f992dcc43f8a4106bae8b090ecb3fcb7ef6ce336081c22636f70e876d9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.2/cargo-spellcheck-v0.13.2-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DC0E07751C8D13",
|
||||
"hash": "f54fb8243497258115d1eb55b99bfc94ab3e09636c78665d3b6410885ba9190a"
|
||||
}
|
||||
},
|
||||
"0.13.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.1/cargo-spellcheck-v0.13.1-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DBC987279A3734",
|
||||
"hash": "17af34dbefad5c45d23df3e4e81b0addc78782db0ed2e8e491a1532761463e1e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.1/cargo-spellcheck-v0.13.1-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DBC9875250341E",
|
||||
"hash": "d18c19a3c5e7eb9ea516e691b54a4517a60517b6b1fb75b7f56a0c1dcc9b177e"
|
||||
}
|
||||
},
|
||||
"0.13.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.0/cargo-spellcheck-v0.13.0-x86_64-unknown-linux-gnu",
|
||||
"etag": "0x8DB98F2A6C10BCB",
|
||||
"hash": "41e99240e55f38cc6d43d7ea9f2ccd448f584eefdc262129e4238f057d995923"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.0/cargo-spellcheck-v0.13.0-x86_64-pc-windows-gnu.exe",
|
||||
"etag": "0x8DB98F240CB78CC",
|
||||
"hash": "57d45d5942d7ccd49599aae549c0bd5d906868eaeb39481088e55001d65f4784"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,940 +0,0 @@
|
||||
{
|
||||
"rust_crate": "cargo-zigbuild",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.23.4"
|
||||
},
|
||||
"0.23": {
|
||||
"version": "0.23.4"
|
||||
},
|
||||
"0.23.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.4/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DF08FC4753F95D",
|
||||
"hash": "9e3cf73485edbd45905c8aadbc0fdf869c7ddc3848f0c898229f2680db52e44b",
|
||||
"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.4/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DF08FC46D6209E",
|
||||
"hash": "79463de3b10811fcebe91a3771f9658a2e40178eb6de66a2d379d12fe5317b6c",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.4/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF08FC46F6DE52",
|
||||
"hash": "cd1226091f9f99ac7b46fb413968fb0b46edbe3ea961817d31b968352de4d4a6",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.4/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DF08FC464CF1D1",
|
||||
"hash": "25cf2cdc6cde848b33a761ff2cf46d1efe6ba7e1adfc4b6f3ee2d570cacb5419",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.4/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DF08FC4661E8CC",
|
||||
"hash": "ca2369ae1a9995542206a6c18dd372acff94dddeb9d7c07e09bfb7594197cea3",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.4/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF08FC4661C1EF",
|
||||
"hash": "46a3ea4a927477035c6d0b030ed27e7c69dab8f6038d03785738887c6f57a707",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.23.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.3/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DF044F7BACD6E6",
|
||||
"hash": "75c94b3f0d12d39270106852c747284521184b2f816a895576f3399e61b35af5",
|
||||
"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.3/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DF044F7B45F7CC",
|
||||
"hash": "513a7894825661ad91382a5aed2dca5753e47d4316f5b0c62baa136b9c82d964",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.3/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF044F7B8126E6",
|
||||
"hash": "7c1edab4815fa6542f1899c0fd8921c3995b2b109f65dd96e81247036f3a5970",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.3/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DF044F7AED8CE2",
|
||||
"hash": "364c5843f9c0cc7de620642832a6a5fba7a5e3cf825602e444c08eefb57b0391",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.3/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DF044F7AEF11D7",
|
||||
"hash": "fbbd674b5eca93980f1e6a24c35b1e87e03d23f07d0def14406049d1f92f47a8",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.3/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF044F7AF15938",
|
||||
"hash": "3f0847176907dbdfe74a44e909e60f26a912ca4859040b473439d9ecce6e4b1e",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"0.23.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.2/cargo-zigbuild-x86_64-unknown-linux-musl.tar.xz",
|
||||
"etag": "0x8DF01D783D4F3DD",
|
||||
"hash": "505f028a380f16dab50213307d5deb809845633a8a8d4ca2a0df6dd70554c47d",
|
||||
"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.2/cargo-zigbuild-x86_64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DF01D7838D1822",
|
||||
"hash": "44eb9ca250104d11b5e09c388a38c4255b455a71518151f5a37d963bd376c8d4",
|
||||
"bin": "cargo-zigbuild-x86_64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.2/cargo-zigbuild-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF01D783C09864",
|
||||
"hash": "fd78b74953eff30b67ad91947aea8b4c449fb1761b6658dd672706e894e1cb5c",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.2/cargo-zigbuild-aarch64-unknown-linux-gnu.tar.xz",
|
||||
"etag": "0x8DF01D7832D8D57",
|
||||
"hash": "aa87b7bfd938a27978d20808df907b192c79b221bad98b1a95e4e3abc1761a4c",
|
||||
"bin": "cargo-zigbuild-aarch64-unknown-linux-gnu/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.2/cargo-zigbuild-aarch64-apple-darwin.tar.xz",
|
||||
"etag": "0x8DF01D78326B726",
|
||||
"hash": "40b8a7706e463fcd2df206b5de75d6952a7088c4f8f015f443d4ca2c3446b943",
|
||||
"bin": "cargo-zigbuild-aarch64-apple-darwin/cargo-zigbuild"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.23.2/cargo-zigbuild-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DF01D78333055E",
|
||||
"hash": "8a240bd590784834c59864b000bbe95ec571b79d88905abbf69018de657ea3e4",
|
||||
"bin": "cargo-zigbuild.exe"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,117 +0,0 @@
|
||||
{
|
||||
"rust_crate": "convco",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.7.2"
|
||||
},
|
||||
"0.7": {
|
||||
"version": "0.7.2"
|
||||
},
|
||||
"0.7.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.2/convco-v0.7.2-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DF09F67C537CAA",
|
||||
"hash": "a34797bb6867d3444cce9466c96d49abea4cecd02cac12dce218b637570fd0d4",
|
||||
"bin": "convco-v0.7.2-x86_64-unknown-linux-musl/convco"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.2/convco-v0.7.2-x86_64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DF09F67C6F22E7",
|
||||
"hash": "57601b963de1b3a8ffff75041b76e2caa20d375305037ffe120f4fc423ece3e6",
|
||||
"bin": "convco-v0.7.2-x86_64-pc-windows-msvc/convco.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.2/convco-v0.7.2-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DF09F67BFEDE14",
|
||||
"hash": "8871a3b435703f076b759fc7dfaf35f70d039542fad8210437c457ceb4663863",
|
||||
"bin": "convco-v0.7.2-aarch64-unknown-linux-musl/convco"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.2/convco-v0.7.2-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DF09F67BC4AEA2",
|
||||
"hash": "410b58bd38db0d3402b8ef950234b44b800ae748148fa6d22ebdcfa6a330785f",
|
||||
"bin": "convco-v0.7.2-aarch64-apple-darwin/convco"
|
||||
}
|
||||
},
|
||||
"0.7.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.1/convco-v0.7.1-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEF18924807F6E",
|
||||
"hash": "c0088e64cfa3660dd7b5e63dd0555a7e5343daf11295ddce376c928e3f105f10",
|
||||
"bin": "convco-v0.7.1-x86_64-unknown-linux-musl/convco"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.1/convco-v0.7.1-x86_64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DEF18924507DB2",
|
||||
"hash": "4e7946cca31818522a04f00a96607425b61b1b7942a59c3404945b168576dda7",
|
||||
"bin": "convco-v0.7.1-x86_64-pc-windows-msvc/convco.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.1/convco-v0.7.1-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEF189247BC9D1",
|
||||
"hash": "0b284c89297063809429b67f78108f8cc8ab79b59e2be38fc85b241e79e0f9cd",
|
||||
"bin": "convco-v0.7.1-aarch64-unknown-linux-musl/convco"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.1/convco-v0.7.1-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEF18923FF5D83",
|
||||
"hash": "f1dadc1344672a31db541c92fb85713e1ddadc88ced10bbedb02cac24f7669cd",
|
||||
"bin": "convco-v0.7.1-aarch64-apple-darwin/convco"
|
||||
}
|
||||
},
|
||||
"0.7.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.0/convco-v0.7.0-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEDD2ACCEC0640",
|
||||
"hash": "37a21cb2e88e418f35068db77b3255f88a153ddcea42395dc91004ee1460c2db",
|
||||
"bin": "convco-v0.7.0-x86_64-unknown-linux-musl/convco"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.0/convco-v0.7.0-x86_64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DEDD2ACC7BE938",
|
||||
"hash": "22429240e0c41d7d151fe9d8c2e26ab1cf87b50a31ab3ecebc4689d48f159213",
|
||||
"bin": "convco-v0.7.0-x86_64-pc-windows-msvc/convco.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.0/convco-v0.7.0-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEDD2ACC04EF54",
|
||||
"hash": "b2356c8a5d3c383948f6eeb3017dea68d7140bc26a9f306d79d9a9591125dd8c",
|
||||
"bin": "convco-v0.7.0-aarch64-unknown-linux-musl/convco"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.7.0/convco-v0.7.0-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEDD2ACC097E12",
|
||||
"hash": "eabfac4390a4ab8e254b429384d3595b7e4917bcb6b5371a96844e80e74b89d7",
|
||||
"bin": "convco-v0.7.0-aarch64-apple-darwin/convco"
|
||||
}
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.4"
|
||||
},
|
||||
"0.6.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.6.4/convco-ubuntu.zip",
|
||||
"etag": "0x8DEB96EA68FD07C",
|
||||
"hash": "d6e43a1975949ef05d31bb1ac64fdd7c2dbc18b0b65df075c16dc296b8153be7",
|
||||
"bin": "convco"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.6.4/convco-windows.zip",
|
||||
"etag": "0x8DEB96EA51CABCF",
|
||||
"hash": "268f1c80abcb2cdc31174984a0a824f06705b5f62485e780f04008c5765219bd",
|
||||
"bin": "convco.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.6.4/convco-ubuntu-aarch64.zip",
|
||||
"etag": "0x8DEB96EA5E3148D",
|
||||
"hash": "1e626914c90cf60314a8ef50d97566ebabb0ad5daf405fa7e4ca3193df1c73c3",
|
||||
"bin": "convco"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/convco/convco/releases/download/v0.6.4/convco-macos.zip",
|
||||
"etag": "0x8DEB96EA769D246",
|
||||
"hash": "88901e63aa26b601b6726bff8e05cab89d16ebcb772f719bad431a40b12caa54",
|
||||
"bin": "convco"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,89 +0,0 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.8.2"
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.2"
|
||||
},
|
||||
"0.8.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/d2lang/d2/releases/download/v0.8.2/d2-v0.8.2-linux-amd64.tar.gz",
|
||||
"etag": "0x8DF0207F32CE239",
|
||||
"hash": "0ea49e35f17c3ac00ffa5d0a1fa571f5c344cd38127dbaa4bf6158fcd0c7bfb0",
|
||||
"bin": "d2-v0.8.2/bin/d2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/d2lang/d2/releases/download/v0.8.2/d2-v0.8.2-macos-amd64.tar.gz",
|
||||
"etag": "0x8DF0207F13BD1A5",
|
||||
"hash": "6c7b7a09278b131664cbc5e715dac0ee849c3f785ffc9dfaab2df6b1f91bf8ed",
|
||||
"bin": "d2-v0.8.2/bin/d2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/d2lang/d2/releases/download/v0.8.2/d2-v0.8.2-windows-amd64.tar.gz",
|
||||
"etag": "0x8DF0207F1391595",
|
||||
"hash": "2c223b56ce5f5984c235b88b1e0e996126ba7c8a37476ad9b47d7d6db9475f18",
|
||||
"bin": "d2-v0.8.2/bin/d2.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/d2lang/d2/releases/download/v0.8.2/d2-v0.8.2-linux-arm64.tar.gz",
|
||||
"etag": "0x8DF0207F11326F6",
|
||||
"hash": "bf1585cebf8496690668dc135dfd469068e3ae3eb38cecdc1f7d7835cdbc1228",
|
||||
"bin": "d2-v0.8.2/bin/d2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/d2lang/d2/releases/download/v0.8.2/d2-v0.8.2-macos-arm64.tar.gz",
|
||||
"etag": "0x8DF0207F1257C9B",
|
||||
"hash": "73ddb07c636bd5c5723e4bf8569a90b7329ea35dc32af2155650e1f572e823b2",
|
||||
"bin": "d2-v0.8.2/bin/d2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/d2lang/d2/releases/download/v0.8.2/d2-v0.8.2-windows-arm64.tar.gz",
|
||||
"etag": "0x8DF0207F119A311",
|
||||
"hash": "2aa25e88883300230b6af6c16f6ebd653b7e0660b1258ff740cace476887bb2e",
|
||||
"bin": "d2-v0.8.2/bin/d2.exe"
|
||||
}
|
||||
},
|
||||
"0.7": {
|
||||
"version": "0.7.1"
|
||||
},
|
||||
"0.7.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/terrastruct/d2/releases/download/v0.7.1/d2-v0.7.1-linux-amd64.tar.gz",
|
||||
"etag": "0x8DDDF1728E4DD4A",
|
||||
"hash": "eb172adf59f38d1e5a70ab177591356754ffaf9bebb84e0ca8b767dfb421dad7",
|
||||
"bin": "d2-v0.7.1/bin/d2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/terrastruct/d2/releases/download/v0.7.1/d2-v0.7.1-macos-amd64.tar.gz",
|
||||
"etag": "0x8DDDF170F26D8B8",
|
||||
"hash": "b0178e8fdae72194d5a23aa6effd323378cc58ccd3b08d175ab80371c14e106f",
|
||||
"bin": "d2-v0.7.1/bin/d2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/terrastruct/d2/releases/download/v0.7.1/d2-v0.7.1-windows-amd64.tar.gz",
|
||||
"etag": "0x8DDDF17125BFAEC",
|
||||
"hash": "d289c2866221c618c9fc6efcd416ee8c16e122bd0100761aea51001e3c958f57",
|
||||
"bin": "d2-v0.7.1/bin/d2.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/terrastruct/d2/releases/download/v0.7.1/d2-v0.7.1-linux-arm64.tar.gz",
|
||||
"etag": "0x8DDDF17039F867F",
|
||||
"hash": "ce3a0b985a8f91335a826c254b3a88736fd81afcdd08b58f6c749d2add6864b0",
|
||||
"bin": "d2-v0.7.1/bin/d2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/terrastruct/d2/releases/download/v0.7.1/d2-v0.7.1-macos-arm64.tar.gz",
|
||||
"etag": "0x8DDDF1729CAB84F",
|
||||
"hash": "80de85f3b0ac7d9569acac0780ed65dd994ea78969b6b230c58bbb2c6113465b",
|
||||
"bin": "d2-v0.7.1/bin/d2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/terrastruct/d2/releases/download/v0.7.1/d2-v0.7.1-windows-arm64.tar.gz",
|
||||
"etag": "0x8DDDF1704EDE5E6",
|
||||
"hash": "c7ebdc7b2f6df513b715d431762105386f7c702b0b2dddff2a500a032b1bba67",
|
||||
"bin": "d2-v0.7.1/bin/d2.exe"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,394 +0,0 @@
|
||||
{
|
||||
"rust_crate": "jaq",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "3.1.1"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.1.1"
|
||||
},
|
||||
"3.1": {
|
||||
"version": "3.1.1"
|
||||
},
|
||||
"3.1.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.1/jaq-x86_64-unknown-linux-musl",
|
||||
"etag": "0x8DEF2C4DD20287A",
|
||||
"hash": "b9a07a6f10f0305d96d333ea7db69d60704eb4d4e71c98094157e3cc9fe08110"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.1/jaq-x86_64-apple-darwin",
|
||||
"etag": "0x8DEF2C4E0BC2F71",
|
||||
"hash": "34b1a9495dbd28df09ad83c832a2ae4be60657d8c24e72f28565cd19b98ed0af"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.1/jaq-x86_64-pc-windows-msvc.exe",
|
||||
"etag": "0x8DEF2C501E806CA",
|
||||
"hash": "7b2f5153d11118c3ccff01859743e09842cabc42ba08f8876489c1be30d1d08d"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.1/jaq-aarch64-unknown-linux-gnu",
|
||||
"etag": "0x8DEF2C4E3FB2B25",
|
||||
"hash": "bdda42d5a8c060a2c7916b287a227e7750d5fccbd4c37aacf0ab863010921829"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/01mf02/jaq/releases/download/v3.1.1/jaq-aarch64-apple-darwin",
|
||||
"etag": "0x8DEF2C4E83D05FE",
|
||||
"hash": "b1a2e63384e156d90bbf61a1142302aa59bfebd8c89e24dfc9b5747618880fcd"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"rust_crate": "kache",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/kunobi-ninja/kache/releases/download/v${version}/kache-x86_64-unknown-linux-musl.tar.gz"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/kunobi-ninja/kache/releases/download/v${version}/kache-x86_64-apple-darwin.tar.gz"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/kunobi-ninja/kache/releases/download/v${version}/kache-x86_64-pc-windows-msvc.zip"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/kunobi-ninja/kache/releases/download/v${version}/kache-aarch64-unknown-linux-musl.tar.gz"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/kunobi-ninja/kache/releases/download/v${version}/kache-aarch64-apple-darwin.tar.gz"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/kunobi-ninja/kache/releases/download/v${version}/kache-aarch64-pc-windows-msvc.zip"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.16.0"
|
||||
},
|
||||
"0.16": {
|
||||
"version": "0.16.0"
|
||||
},
|
||||
"0.16.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF02DCB24D90E2",
|
||||
"hash": "caee657c662379475af2a0a7611ad32a6d053822036c1ec191bb8fd1c826d54b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF02DCB1BCA27F",
|
||||
"hash": "fef8184980ba65e9c8eaddbac7da31a7f782d994d442e23cc0ec89f396d7e889"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF02DCB20F207B",
|
||||
"hash": "b4b53a54926e5cdc8c084562fdf215780306c9d5dc7eeaff9e4eb70c0b47fe2a"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF02DCB133849D",
|
||||
"hash": "6eabb67867022eecdbfffe43c16e75b5c5b561983742bda3c900a4cb4c50e4a7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF02DCB1016273",
|
||||
"hash": "6ad80d3bbb33d7db1715d5a919edbdf755dc19ca22fa83797c659147f1f9e229"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF02DCB115E4CE",
|
||||
"hash": "4dbd93909ac11a8bfba40dbba9bc1d936dac99999d5354958506f93a2e02d641"
|
||||
}
|
||||
},
|
||||
"0.15": {
|
||||
"version": "0.15.1"
|
||||
},
|
||||
"0.15.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF020E9EFE9B1C",
|
||||
"hash": "21a6e50fff5eeab6a4c76a17af3878369d5d3cb57b38b85d7c8a5bcd8479d300"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF020E9E75A0CF",
|
||||
"hash": "373788f65e41cbedc313612906da3fbe9a42656f8ed7be1e73145cd663cbee41"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF020E9EBFB606",
|
||||
"hash": "c165b40284b881426e6082a951c4fb177149ca8e4dc4e88dfbde5d4a6d1efe10"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF020E9E18328E",
|
||||
"hash": "50e8cc75fdac50e304ee3e1827c06135cc758e3a0024190d8951a00c3779da31"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF020E9DD35783",
|
||||
"hash": "abfea79fcddad10aef742ead099e6349a0405e919dd6023d6402cc68a866705a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF020E9DE48B4B",
|
||||
"hash": "67b4865dadbf4700924abf69773f3874917f1edb2a2dcefab2bbf80559e7199f"
|
||||
}
|
||||
},
|
||||
"0.15.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF01DD59FD07FB",
|
||||
"hash": "dfe13129bb92a5656b2fb91ea06dac08f46164d488195db42d15562d6726dce6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF01DD5968C1FB",
|
||||
"hash": "3285aff380e69d6c1f1141c3a2d97a6d456e0397c268cdb71b6c31e79af37c3a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF01DD59AEF1CE",
|
||||
"hash": "35acb1f3c07eff4295b7fe6b0ad5aefb02937e0d4a1ab0b5a6a8ea399230d0e1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF01DD592332DE",
|
||||
"hash": "f5380a5a9b215c675ea2b3de8e814aa0b2ae22db407a1d73e81c6629225fdd78"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF01DD58DB0977",
|
||||
"hash": "65059d4190dbf2c959ab3e01d7a3147ebbc7c64d3f3fa81d1fdd596e2cd521a5"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF01DD58D89B33",
|
||||
"hash": "e7f733ce4ab40c46b813db458680dee973afc56e52bb7f20ac8228e33980e555"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,902 +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": "2.1.0"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.1.0"
|
||||
},
|
||||
"2.1": {
|
||||
"version": "2.1.0"
|
||||
},
|
||||
"2.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF06E9C0FEA261",
|
||||
"hash": "e683a9cdff350dd3ee47ac6fc1a95ee0ac6910dff4fa4657e56223428f72598b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF06E9C4B97789",
|
||||
"hash": "3eea021de299c01aa6c0d07eb90cec60e5d02144b69ac285f997bd2f6acae70d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF06E9BFB9D04C",
|
||||
"hash": "8533f57bc493d269f4b75a12d2384298860953498bc746f936b4c0c884044032"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF06E9C2D5439A",
|
||||
"hash": "59a256f4f07b2a0c7e7f30a2c927952ddb828ec3993a4e833f21277d2138a132"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF06E9C56363C5",
|
||||
"hash": "42cbbdc58257d9abedc88c6fb76d2c1b7a41193f0f5ac292b7b09c76f0570893"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF06E9C0609141",
|
||||
"hash": "67cc7e6214b9bb07393dd7859f8a1afee128ca37c5faf61694d3bdf5518422b8"
|
||||
}
|
||||
},
|
||||
"2.0": {
|
||||
"version": "2.0.0"
|
||||
},
|
||||
"2.0.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF016DA9EF481F",
|
||||
"hash": "d30d71f82e25e8c024f98cce3258c90e17b5be31d0fdb6f30b438d2fac1f130b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF016DAD4577B9",
|
||||
"hash": "de54730312d11b42cb306e6b3b5979d08615b1c9d39359e32a6b1d60839501c7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF016D83BB57CD",
|
||||
"hash": "64535a9fbfa8ad7d431ac757e2a94188380f51f56dea2684dc7bf005e98dfc80"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF016DABC3533F",
|
||||
"hash": "ccb230322aac4b3fa16a35d8e3b86680b8cb7f06ebf64f3c81cec8be7b2024af"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF016DADDF3870",
|
||||
"hash": "6987b7f3e1f38c2f647523bf90fc207532dcf9cdf571936f9f10ab30b46c3754"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF016DA93E1CB0",
|
||||
"hash": "7642a685d139bc73159332258a4bb896b215f2808bc492673eae4e25ce427ca8"
|
||||
}
|
||||
},
|
||||
"1": {
|
||||
"version": "1.113.0"
|
||||
},
|
||||
"1.113": {
|
||||
"version": "1.113.0"
|
||||
},
|
||||
"1.113.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF81B926F48BF",
|
||||
"hash": "798affdc312ca1651623856c0511a884baf399aecdf61cebad4ef73548b6f411"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF81B96B17002",
|
||||
"hash": "f627b3ab9fce06b9289808ef4fbe0afcc4887bf2aa42ba6b78f5c5a8cb1891cd"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF81B90E74A7E",
|
||||
"hash": "790f318e680bd0b730052f3fb13f55560e265c11ce456e890578243459cf2f61"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF81B9474433C",
|
||||
"hash": "4d686a2da145234fb1a8b56429da44bb33fc49e4ab4c28a48e705197ae183f16"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF81B9754ADFB",
|
||||
"hash": "ee26a4050dfc9d9da223517ea539199a8d97528b7831660ed944c8723807c8ed"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF81B9194E341",
|
||||
"hash": "ac8895aaa0ea3f421e1145ea26f7ccc576bb5e11a760452e41abb50fbea172ca"
|
||||
}
|
||||
},
|
||||
"1.112": {
|
||||
"version": "1.112.0"
|
||||
},
|
||||
"1.112.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF4EEACB01CD8",
|
||||
"hash": "6de98a3ac489b42235f83a4247770378c137413a1aa52a314717f28e9938f709"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF4EEB0E7AAC2",
|
||||
"hash": "49842fa6659a2c0ab7cc60903408fa57613aac40b3d1e84e5efd8be47ca32f24"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF4EEAB276CEE",
|
||||
"hash": "72219e3d27a35632d9992da6bbb710049dbc8bd3c72cbd4ca13050d66487307f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF4EEAEEA88F3",
|
||||
"hash": "24c33ede872dd008c68fb36fd07a22d4bbe99c6753ac790f1bb8a3852664b448"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF4EEB17A669A",
|
||||
"hash": "b8e594dc904b1ebed242a11d2aa5e38a046efd93fe1367dd15c4c17f76905ed4"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF4EEABF5AEEA",
|
||||
"hash": "f3ad271ff493e4d8636d4da63b82ded54fa5f5eb30c803334fe0e481f5cd5ed8"
|
||||
}
|
||||
},
|
||||
"1.111": {
|
||||
"version": "1.111.0"
|
||||
},
|
||||
"1.111.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF44809C70771",
|
||||
"hash": "d7602f1b19940b25b5fac912fb08a7e98954f7c9cd0e2b3dfc7d0983817b36f7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF4480D90EC38",
|
||||
"hash": "6b5aa0a3c3a8ec222407637335d153520d7792d50bb7fc04c2e002935441ba26"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF448084D4F2C",
|
||||
"hash": "52287eb3449622066b062443f817ca7444ecd16664f426ec6b9d32a035faf754"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF4480BA482A8",
|
||||
"hash": "f3a281055e4f5b0bad96d47efd4312615349c98037089ce9c698367b30bba024"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF4480E4EF2AF",
|
||||
"hash": "b949fd7f3e270511e98466f92b7696220c6ec372c25e6fe94aed5a3385776e5c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF44809173D06",
|
||||
"hash": "17baceac4f7f1a3775483393730f53bb41aa1a873bdb57cf3f7870913b51ca89"
|
||||
}
|
||||
},
|
||||
"1.110": {
|
||||
"version": "1.110.0"
|
||||
},
|
||||
"1.110.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEEF5744EF7B59",
|
||||
"hash": "f55296fe4c6090c27963b2f62f5938e90b187ab1357466c8661d3786f6be7f14"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEEF5747ECA409",
|
||||
"hash": "194e62ec10535a519ce3a2c08d8866342cb6b51af1df37bf04c35974cbbfe896"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEEF5743BDBC7A",
|
||||
"hash": "fb989ae990e65ff1a6dc3cda58ff785597c76376fbff6abc606eb78a8834a1ec"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEEF57468178E9",
|
||||
"hash": "8f31034da90745923f5ff5b0792a22d9300e0f77ff2e5e4359da1f129aa67ec1"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEEF57488E0C21",
|
||||
"hash": "f2a5e324eb57578817d7398158ae243f4b1db374df4a40228dcc02cd48db4400"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEEF57445C1A8A",
|
||||
"hash": "28eeb8d473b315172815772583c3d22ae6e1caf888a6cfa541cf11f99d02b476"
|
||||
}
|
||||
},
|
||||
"1.109": {
|
||||
"version": "1.109.0"
|
||||
},
|
||||
"1.109.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE9CC485C6D42",
|
||||
"hash": "17ab7567c24e10907d1d911152cacf3b0b27ae6041a9e72507ff991bbca8ac95"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE9CC4BAAAAC8",
|
||||
"hash": "1bd7db43acd8999929c1553d2cf8285869aaae579df01dc05bc7c59b60b54358"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE9CC4742D10D",
|
||||
"hash": "2970475db865eb7fd995792b2d2670316fee27a7cd3b02c289b13125aad5a214"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE9CC4A12123B",
|
||||
"hash": "13f98f14cebce1fa96fd987f2123739f8b2cb2aa3d28ce5f6346fe0c88742e8a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE9CC4C283BBC",
|
||||
"hash": "1c7ebc42ce42789234053e399c85d27d1c2fffa6e03e1935d8fbfe28f76b2d32"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEE9CC47D40D8E",
|
||||
"hash": "05ba87a671cd28ef8219770dc515039808f0e07309ea8ce5bd1d449394ee2a94"
|
||||
}
|
||||
},
|
||||
"1.108.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE3D160774D37",
|
||||
"hash": "b9ba14a1e5ffdfa153bc591d73fa75641610820b9b6fc8faab89f3206c483e1c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE3D163CC2FEF",
|
||||
"hash": "75d12d5f0e47d8feef3dc8f2231bdeaf6d39e6f57e78e0db7343aa184891e15c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE3D15F3EB8CB",
|
||||
"hash": "dbaa00ab679522036437fc29351bb522c052168c722746d672671d08777eb9c9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE3D16224037E",
|
||||
"hash": "bfba78fdde41b82c2d630e1417de46fbf9c8071ccfba3c814b2c8fcfd4bf0f7c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE3D1644A385D",
|
||||
"hash": "8fd918110f1e2eaf4f29d6de4324bdf30c562c831f3fe4bb2ab2e76d73a91030"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEE3D15FD41BAD",
|
||||
"hash": "a7017187fbdef44af41a74206c86d82bcfb8ed8ba794dbb4c61f2ebd7a366f42"
|
||||
}
|
||||
},
|
||||
"1.107.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEE2C6991B3942",
|
||||
"hash": "41ccd1899b318d8adc3ff3886cda35fd95e8d5107854e38cdcb9d40be44618b4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEE2C69D7E6226",
|
||||
"hash": "9e8077126d6531e870f9c605e69e04bcbd542b6e64f4b2567e7c74c6b26817f6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEE2C6979AFFC3",
|
||||
"hash": "bd61201aa61976f007bae8024538ed525a11792a86d1a16434d183ec2fe735fb"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEE2C69B14F697",
|
||||
"hash": "16a82a2857260efa05325796712db4051c380f119d3c2cda4b3df2b25277e5a2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEE2C69E272F96",
|
||||
"hash": "e3a1e86bf0f537254740e518b0de68616f2fc91f6940d3fb13fbcf96c07b6ad5"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEE2C69854B95B",
|
||||
"hash": "d4e6a76feb69209d0befdb156b29c62627068a49833b100952d3099d7277117f"
|
||||
}
|
||||
},
|
||||
"1.106": {
|
||||
"version": "1.106.0"
|
||||
},
|
||||
"1.106.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEDCCCF370F69C",
|
||||
"hash": "5320b7a3a2f7a8c9b90990ee90099d70903d84c302e61b54dae87b7000c8c153"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEDCCCF93640BD",
|
||||
"hash": "46406df7288cc93d539a5b1732549794eb43e71f175cda4d59e6a2fe5948b5ec"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEDCCCF158964D",
|
||||
"hash": "2a8b342e17367d7ed0e23194197a92900e678abf7379c4674d7a5cae1f5ab147"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEDCCCF6620F96",
|
||||
"hash": "1c888a174b4fa8eaebbddf4b46829f4d00079f44d8b07ed4f13d048fa6068540"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEDCCCFA12979E",
|
||||
"hash": "e20e28254709a26344356a98bc25401f48c09861d63c7f601cb1fcff21ab36db"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEDCCCF29512FC",
|
||||
"hash": "3d39acb2f79d36452be369205eca46f3ebe8da7e2a229bdf293a5e7d1e218d19"
|
||||
}
|
||||
},
|
||||
"1.105": {
|
||||
"version": "1.105.0"
|
||||
},
|
||||
"1.105.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED59CBE19C0AC",
|
||||
"hash": "08df2f782f31555d8fa2219034e81753823539839dd980d58c36384d391a05bc"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED59CC25F5B90",
|
||||
"hash": "40d6e1d2d1cc223fbf27c4195c603e6a1b57c90bd262bc27e63c95c3344d0355"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED59CBC8AF311",
|
||||
"hash": "911c30661f8f6752e96b652121d912c425ed968be4844115069315e83b0cd053"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED59CC0498954",
|
||||
"hash": "0c4c2581e88ae07f7ca360bd9ba7150f471d19b89f2f5a04092fcde349dcfbef"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED59CC30A7BD0",
|
||||
"hash": "9c7aae0df0d01fb8d41b7ed59354fbbdd1fe940b7b16924d954c92bdf06b08b9"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DED59CBD567A0A",
|
||||
"hash": "2cc706df60b854ade232f6ec45d3edba399f5fc3933e1888abae3ca540fb6f6d"
|
||||
}
|
||||
},
|
||||
"1.104": {
|
||||
"version": "1.104.0"
|
||||
},
|
||||
"1.104.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DED00AA6E9DF87",
|
||||
"hash": "05c37684fad4ad8f93b7c0f5412647a4962adff73099594e36f277dbfebd16f8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DED00AAA92883C",
|
||||
"hash": "b7941fc4bcebd784f85565690b9a22fec7320525f74359f9b4903e09624b4ad4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DED00AA5AEF457",
|
||||
"hash": "cdbcd03cab7a1f2c7b96f6f127e2a431cb98f78b1fd0d29dd90b83b08217b5a4"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DED00AA8F555AE",
|
||||
"hash": "46a6c95f883b0c2ebca3719f6546f96b668b0adb3b98287547954b6ca3411fcd"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DED00AAB155EE0",
|
||||
"hash": "a50367302598132451620b7467237f1b9517d45a37994fcc4fd239ef78d3a5d6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DED00AA659B540",
|
||||
"hash": "0d9cd18396ba52ec8360a8e34a8dad7636e77b7113a30d90c9a3db73ed0abf1d"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,419 +0,0 @@
|
||||
{
|
||||
"rust_crate": "martin",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/maplibre/martin/releases/download/martin-v${version}/martin-x86_64-unknown-linux-musl.tar.gz",
|
||||
"bin": [
|
||||
"martin",
|
||||
"martin-cp"
|
||||
]
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/maplibre/martin/releases/download/martin-v${version}/martin-x86_64-apple-darwin.tar.gz",
|
||||
"bin": [
|
||||
"martin",
|
||||
"martin-cp"
|
||||
]
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/maplibre/martin/releases/download/martin-v${version}/martin-aarch64-unknown-linux-musl.tar.gz",
|
||||
"bin": [
|
||||
"martin",
|
||||
"martin-cp"
|
||||
]
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/maplibre/martin/releases/download/martin-v${version}/martin-aarch64-apple-darwin.tar.gz",
|
||||
"bin": [
|
||||
"martin",
|
||||
"martin-cp"
|
||||
]
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.15.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.15.0"
|
||||
},
|
||||
"1.15": {
|
||||
"version": "1.15.0"
|
||||
},
|
||||
"1.15.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF08DC766C353E",
|
||||
"hash": "4db541da2b76fec89e2b5b6e9d0fb6daa6da7141ad91f58537ea33db2d288d61"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF08DC7537ECC1",
|
||||
"hash": "f425dc2330553678b5cc3d53cb9fe30133e1a22ab25afc8c19d14f1de564458b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF08DC7541A5D0",
|
||||
"hash": "9891739e89bf6fe05ddb75d416f5b459611bfa397085f756e7b186cbe1d5d312"
|
||||
}
|
||||
},
|
||||
"1.14": {
|
||||
"version": "1.14.0"
|
||||
},
|
||||
"1.14.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFD350B0AC614",
|
||||
"hash": "8d1c2b0945a812e4c00a0af8504087e988f379ee9c8d51c6e961137d2dfd90a5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFD3509EA73F8",
|
||||
"hash": "56e938d666f38bd075c3ec9ae44e03380a6b4146ce6b47cadb4e9f4d4c1c6942"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFD3509EE402C",
|
||||
"hash": "bfe3a7d9710e91406fe6e02997ed8c28896d7be0a6caa920352a1eaaf181ca92"
|
||||
}
|
||||
},
|
||||
"1.13": {
|
||||
"version": "1.13.0"
|
||||
},
|
||||
"1.13.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEEA3B33BCEA47",
|
||||
"hash": "96d6415ca3b18f843eb0ef28f44d34b96c494b192e9ef7e7289b3bc88612009d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEEA3B3326AAAD",
|
||||
"hash": "ee7b6e180579023120fb51a9992b59874cc1ad55a2154618cea7da6a09f47f5f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEEA3B32FE113B",
|
||||
"hash": "3562e042097300ce4240a631ff4018227813ee1de28dd22f3209a2e26cdbbd6e"
|
||||
}
|
||||
},
|
||||
"1.12": {
|
||||
"version": "1.12.0"
|
||||
},
|
||||
"1.12.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEDC7B8993D456",
|
||||
"hash": "5933cbd8addd7a85a43bbf0274e116fca2287c4d826440d93a4ed4b2a78025a4"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEDC7B89246DBC",
|
||||
"hash": "cf0a38b572eece6990c4510ade1358c66f86223029ed31e88a58959ecf8405a2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEDC7B88E3DCF4",
|
||||
"hash": "9220646b0e9ebb9133b8799e177bfe56aebb038dcc95e5fd0cc9aa46d5e5a862"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
},
|
||||
"1.5": {
|
||||
"version": "1.5.0"
|
||||
},
|
||||
"1.5.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9606A16881B6",
|
||||
"hash": "29cebebba0bc6bc8cd3f089d4c8e06abecef1a1754b9c816ef4dbf6ae41b6f63"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9606A093D120",
|
||||
"hash": "c50589f9fd2ad018adb3c085b9f31fe73b9b5587949cc04f6ae37c18cd0cc390"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9606A0994946",
|
||||
"hash": "11b9305afc987e71d0edc0a7454d1b3f9a7b42d3b2603870729c21bba924ad20"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE9606A08CFAF6",
|
||||
"hash": "c52a2851aae177cfdcd2adf019e391ac4512eaa1566c4f7de3bd4a4746bb60d7"
|
||||
}
|
||||
},
|
||||
"1.4": {
|
||||
"version": "1.4.0"
|
||||
},
|
||||
"1.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE8289D41A741D",
|
||||
"hash": "fbeb563a8a53f1268786d70c0ed2a1e5c7e8142f76168b0b1d07cb6e694ebbfd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE8289D41BAB3C",
|
||||
"hash": "3b42f618cd8d4364690553ad09e7ce9ac2fc548fb9905840720f21efb7c0ed19"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE8289D4002BCF",
|
||||
"hash": "7e148b4d79dd1ac0e7f6f3e637ac7ae03d287663e0c4204724ef3a2894560442"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE8289D4282055",
|
||||
"hash": "3a9107d8960cc03c21f52474f520798cf7c784ee53cda9aadbe83828ab1323e1"
|
||||
}
|
||||
},
|
||||
"1.3": {
|
||||
"version": "1.3.1"
|
||||
},
|
||||
"1.3.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE69BEEF1273C5",
|
||||
"hash": "efae063aa2faa85f5ccadb00d5321bb10adeb2b439ef8422a41951f532f68133"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE69BEEEB00219",
|
||||
"hash": "15c7ae65e14df86f0b70d6c081332beba038cbc421386477fcd6507604d27677"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE69BEEEDE310E",
|
||||
"hash": "88bdff3fd145c242b047ec70c3ccb57eec19ac1817eb8819d68d840aaca6cc81"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE69BEEEB00219",
|
||||
"hash": "f7e91fed05a219db1ebc5a6b33c006991fb472a3963b3602c230ee0864748111"
|
||||
}
|
||||
},
|
||||
"1.3.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE5F7074F325B7",
|
||||
"hash": "1bbea224b92b57211db264725b59d127af9a6e1561293b47710620e7ea23b518"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE5F7074F5BAE1",
|
||||
"hash": "b562eed3e4eff6b85d2762bad0b22e88d49d4c4bc769503ca53f0c418a7d545a"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE5F7074E662D8",
|
||||
"hash": "98bfe75764fbf2d000e773da5b7c8ba21371d55782cd9082094e78d8936fa338"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE5F7074C8752B",
|
||||
"hash": "cfa6b805ffb07b7097f00a345848e6b99ed26c9295dd5cb2e6a7014371348264"
|
||||
}
|
||||
},
|
||||
"1.2": {
|
||||
"version": "1.2.0"
|
||||
},
|
||||
"1.2.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE4B646592531C",
|
||||
"hash": "0cddd16c5d7f04f0c83a4b1724f755239cbc0e21c2de307c75291356dbc3bbf6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE4B6465CAFDBD",
|
||||
"hash": "7cf0b7a14fc4d767bebd4e99d7a569ce8d0a4dcc485c5981736080196bb41148"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE4B64658D7699",
|
||||
"hash": "d67e42fa2f4a61cca47e110768114d7ac28b874fb7f350645b598ff5382279f5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE4B64657575B8",
|
||||
"hash": "beaae2a87c2c8481bf1f1324082e71d0e9d05100da75ac9cc451cb65601bab99"
|
||||
}
|
||||
},
|
||||
"1.1": {
|
||||
"version": "1.1.0"
|
||||
},
|
||||
"1.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE3BE41FE428EE",
|
||||
"hash": "696f331cdf7b6f31a94174efdc0176d024bfe07b7341248437669310d654da27"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE3BE41FCB8C7A",
|
||||
"hash": "5f938c033c8f0eec4cb306da3006becaa5376851510ced253d59fb441fc30051"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE3BE41FC80DF6",
|
||||
"hash": "a11db36240d91e4a4bee838080b13394aa92e70b13070bcadfd2527dba5058b7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE3BE41FCA2E76",
|
||||
"hash": "21437a757c6efad91e9c6965b9133ee3ece82d70881c59d9bb2b74cc97b2ee05"
|
||||
}
|
||||
},
|
||||
"1.0": {
|
||||
"version": "1.0.0"
|
||||
},
|
||||
"1.0.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE27211023BBA3",
|
||||
"hash": "9ef58e23cf79647a5e993d5c201a72a38398c189a4678d0c11e2dae82fd0b120"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE27211021E8EF",
|
||||
"hash": "1e3c955a22988b46624c4a3df5bc4fd6880c286f33cb51aa5510c6eda3b8cfea"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE272110061BD5",
|
||||
"hash": "991957c0c285c2c949dcc6b326980850925af5ab5c7b66ebf1cf31465820a727"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE2721100A0F05",
|
||||
"hash": "756d4f0c73396eca6b34ec4f512f03fc619574e386646d8c441611a48ba49a8f"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,252 +0,0 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-x86_64-unknown-linux-musl.tar.gz",
|
||||
"bin": "oxfmt-x86_64-unknown-linux-musl"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "oxfmt-x86_64-apple-darwin"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-x86_64-pc-windows-msvc.zip",
|
||||
"bin": "oxfmt-x86_64-pc-windows-msvc.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-aarch64-unknown-linux-musl.tar.gz",
|
||||
"bin": "oxfmt-aarch64-unknown-linux-musl"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "oxfmt-aarch64-apple-darwin"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-aarch64-pc-windows-msvc.zip",
|
||||
"bin": "oxfmt-aarch64-pc-windows-msvc.exe"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||
"bin": "oxfmt-powerpc64le-unknown-linux-gnu"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-riscv64gc-unknown-linux-musl.tar.gz",
|
||||
"bin": "oxfmt-riscv64gc-unknown-linux-musl"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"url": "https://github.com/oxc-project/oxc/releases/download/apps_v${version}/oxfmt-s390x-unknown-linux-gnu.tar.gz",
|
||||
"bin": "oxfmt-s390x-unknown-linux-gnu"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.81.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.81.0"
|
||||
},
|
||||
"1.81": {
|
||||
"version": "1.81.0"
|
||||
},
|
||||
"1.81.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF083C2E377E36",
|
||||
"hash": "31857809c6bedf1bae03aeb128269f010d61be7dc232e2467572186a059b7caa"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF083C2DDBDAC1",
|
||||
"hash": "8d0b6fd6bffbb514cb06ccf433b081ab9b55cf84e4e519c0545cb5887947ca01"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF083C2DD74BFD",
|
||||
"hash": "1513aa65c7d70a9eb955b03fcfd477b7e44433f59a3bbe28e37c90e9bc53c310"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF083C2D0F3CE4",
|
||||
"hash": "63a8c2314f7561ff99d48f9f601e38f0fd68a446ed6c82bde892740ee393e0f5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF083C2D0E5359",
|
||||
"hash": "83cb74205190cce07983775f53d2063bf6946bbc9c63028fd000c5c3632be8ce"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF083C2D08EA05",
|
||||
"hash": "9fdc76cf619a5e2fbc769b7b96553dd980fc43fb625b16354a793cbc0a0b03e6"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DF083C2D7A57B9",
|
||||
"hash": "589862cee1660259b928ca6ec8a605fd76d3a5f9334769109e7b25bcde3deeea"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DF083C2D931B23",
|
||||
"hash": "986f3df58d36067aeef05c46b66b76473ff8d8e6d0619a6ebca3f1835d99acd1"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DF083C2DD52B80",
|
||||
"hash": "80e6e25d0b6b31c1cf2ba3315fbd92b91a53c3431715ba09354725e1b7e96c33"
|
||||
}
|
||||
},
|
||||
"1.80": {
|
||||
"version": "1.80.0"
|
||||
},
|
||||
"1.80.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF01E5199B07B4",
|
||||
"hash": "efc963b2bead5b2c664178f66cf109666a45ac30701cadd122f5fdb0a089869a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF01E5194C8D80",
|
||||
"hash": "549faa4f7f66fb0332b079c4dde46000b92d2643e6b06571ffcda93d3e722654"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF01E5195473DB",
|
||||
"hash": "4880057b7570392a19b632cf1883acfd532cd157f5101a96fa5ddd9ef4ffc147"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF01E5189FB636",
|
||||
"hash": "4ea615d6214f51655758c68fe281b3655b95d127494834c4333454bf95c97874"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF01E5189CD341",
|
||||
"hash": "6369192088be232deb84b8881914f38436270ff6302ae9831d674b18876e9da0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF01E518A7010B",
|
||||
"hash": "795789ff74f426ecee00c2c530d030b65005e198426f069b432daff8e050c1d1"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DF01E518F9813B",
|
||||
"hash": "eb61862a3d1e45bdb63c827ad95e07181c4202691b2d2a1650c286b987b716cb"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DF01E519232186",
|
||||
"hash": "340d16c0db3ae99546f1d5332ade327cc6a0679ce226ac3d9813696734e60690"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DF01E5194A9403",
|
||||
"hash": "5e594edb2ded107818afc4948281bbb22db5654a159d56997cb9a7d9cb2b8e98"
|
||||
}
|
||||
},
|
||||
"1.79": {
|
||||
"version": "1.79.0"
|
||||
},
|
||||
"1.79.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEFD3ABAE44F06",
|
||||
"hash": "d663c954e09d49056795c2055a10614d21b306f6f01399f1e472577b5d2ff339"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEFD3ABA98FE78",
|
||||
"hash": "4a461c99b6fd9de0b1a80bb3e4f5dc4ab2ae3822b950c2b1175b334b7b671994"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEFD3ABA911812",
|
||||
"hash": "3d2a74bf5400f7be380b8ae7c4a09055166ccab1f19b2d79564713cd780815d6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEFD3AB9E2270C",
|
||||
"hash": "7ee90502aea1a620c4bbfe747ed74af27ab0db1f562a21837cfa1c090a1a92a0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEFD3AB9DC3A3D",
|
||||
"hash": "39ccca7b67b4265c6b02f749ac46c3a42d84ec0178c6d8abaa986e2b678dd518"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEFD3AB9D97E2A",
|
||||
"hash": "e10fcbaefcec38b3660b71439b69243e3700fcd320b6f74bec9b5596857542f7"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEFD3ABA3D3BCD",
|
||||
"hash": "9db5726bacb4d37713caeac94871369eed6033026a2df3e9c7cb6ffadb778ff1"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEFD3ABA4A9A47",
|
||||
"hash": "a5411c04122ba37312b0c2127ac970441dfaa7d74d2997b26ff55145937bd761"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEFD3ABA873835",
|
||||
"hash": "5a189f99cd50bc88b35525fa5288d76e9ad571d968a0dc8c387424f4f773bb07"
|
||||
}
|
||||
},
|
||||
"1.78": {
|
||||
"version": "1.78.0"
|
||||
},
|
||||
"1.78.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF6CC94CE53D8",
|
||||
"hash": "cc91d9093d860252d556f61c04e8d238ebbf190f4655b7ea79a0f30275142a5a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF6CC948409E4",
|
||||
"hash": "96aa373c0eee82b598e9d7c50607c0b16ae3adba4a44aa57e652e41153286e51"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF6CC94814DE3",
|
||||
"hash": "8b5c4df2df46a44c90c312f871e28f7de05e77660561a17f775e91191c9b39d2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF6CC93C0F850",
|
||||
"hash": "812018b7050c6ca6e7ee9f0db879cdedbe56987cff1fb0dfdb31a0398b356cb3"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF6CC93C4C48C",
|
||||
"hash": "ea3034f82ada48bec37afc26523c0cffb4b28870f6c6a011bd44e0f9531e0b97"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF6CC93C05CB4",
|
||||
"hash": "2b39001c54031cdb671ad4ba234df9dcb0c6ec117c360cf567933d72b77c7580"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEF6CC9429A573",
|
||||
"hash": "ef9dc5ff99e778e6cd00c58f356ef5993e66c9c007a9ac4c2c1626dae7023982"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEF6CC942B9F0E",
|
||||
"hash": "eed76cb17e73cfebefc4c29c5640c9cda01c72ec3237ae49beddf7df5c57ddc5"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEF6CC94783062",
|
||||
"hash": "e322f3efd9bca63d21a2a1795f5e08033a91175b5749f5c83dd1861c11a47b27"
|
||||
}
|
||||
},
|
||||
"1.77": {
|
||||
"version": "1.77.0"
|
||||
},
|
||||
"1.77.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEF157D4AE9884",
|
||||
"hash": "b7205d95dc48125665666de4d1f8fb4d46a349a1617b3638cdbcb7d38f6dbfdd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEF157D4700133",
|
||||
"hash": "a7eb01ce4af7a5e4ac859c68ba181f0b4c3806d57bd23b0d1896a902597b7afb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEF157D473CD80",
|
||||
"hash": "0a2e76c96e20faa2e61eab86b4f66537df9c4d7b47e1b84cf086b0b535b39346"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEF157D3BE1148",
|
||||
"hash": "b7425b3289ee67369472f585294f3d7457a0e42e980e0cf0e1cc12f5cce26868"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEF157D3BED3C2",
|
||||
"hash": "e2324cd3db44b2fdb30c7e22dca019a560e26a17f5f7d90e44ac8afd47ad6fc8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEF157D3BF4866",
|
||||
"hash": "89c1d8773affeeb75da21957b3a50c0f5fa14333f0de537e2353159e63345141"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEF157D448CF2C",
|
||||
"hash": "d47780985061b4bf2310eac819dbf902ca536b5753129e2e290897c22c5243f3"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEF157D43DDF18",
|
||||
"hash": "183369987d02d6f8a73b0c284546fb95cb15e8333958f5663e1e571f825de319"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEF157D45E3AE5",
|
||||
"hash": "13de876eb2103daad9b066e06369004b671d51d551b67f6aea66dbaaeab6245b"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,136 +0,0 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/sudorandom/protoc-gen-connect-openapi/releases/download/v${version}/protoc-gen-connect-openapi_${version}_linux_amd64.tar.gz"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/sudorandom/protoc-gen-connect-openapi/releases/download/v${version}/protoc-gen-connect-openapi_${version}_darwin_all.tar.gz"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/sudorandom/protoc-gen-connect-openapi/releases/download/v${version}/protoc-gen-connect-openapi_${version}_windows_amd64.tar.gz"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/sudorandom/protoc-gen-connect-openapi/releases/download/v${version}/protoc-gen-connect-openapi_${version}_linux_arm64.tar.gz"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/sudorandom/protoc-gen-connect-openapi/releases/download/v${version}/protoc-gen-connect-openapi_${version}_windows_arm64.tar.gz"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.25.8"
|
||||
},
|
||||
"0.26.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF0C0534AA0B04",
|
||||
"hash": "9e77746bd37099eb50e777bb161cbaaae89191865a55cf5750fcf72bc2c5f03f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF0C053564902A",
|
||||
"hash": "2d8b86a9eff646408a8e60f15aab4a1fc2500e0bf9c389162041ead7f8279338"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0C0534AE72D0",
|
||||
"hash": "36961ac81b3b9960645a63dffafb92ad08502f7a68a2d9220717ee0f2cc46b38"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF0C0534ABDDAA",
|
||||
"hash": "0fe03cf8fbd4e85f3974a3b2c2d7cf7cbf4f0b079e9fadcb7f881198ffc955f6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF0C0534B2B3CC",
|
||||
"hash": "2a8d2476deca6e3915d444505375f9d6d95839335bbabf740bce486294471a11"
|
||||
}
|
||||
},
|
||||
"0.25": {
|
||||
"version": "0.25.8"
|
||||
},
|
||||
"0.25.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DF06AC4C8409BD",
|
||||
"hash": "bd242227fe5500c56f6bb786cba745ad4c371c9107a0922661cec72f566dabeb"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF06AC4D118D4B",
|
||||
"hash": "1683611e2bf6899bea8740e1e52af3281d8aa9fba41a8816e94dfb266156865c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF06AC4C85B58D",
|
||||
"hash": "ffb8aba3ad400e89be87ad36ec5bee4a240e11c71454482c3ebdbc493a8ef07e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DF06AC4C7EB88E",
|
||||
"hash": "35f6f651fec8d6cb08a3f2edb351ebdb58d7da6fca36310480f63b59beadf102"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DF06AC4C911A64",
|
||||
"hash": "164b52972927b7c9f12eab88aca875b140b36b298fc3e5525f106e790c426be1"
|
||||
}
|
||||
},
|
||||
"0.25.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DECA3D49E32F02",
|
||||
"hash": "ddea887b432df5471ac67ef6167726b46a4f337af0eec4f5f88998fac5fb6cc2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DECA3D4A995633",
|
||||
"hash": "717c86c3ca0346457b3e4c5f69596b28b2b2ec6bf047498001c02bfad8e59f52"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DECA3D49E80B84",
|
||||
"hash": "aa22bc1563b9701b67ca3b1568ee07f56b6d04b37643eb36dfea1103af3f12ca"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DECA3D49DEEE03",
|
||||
"hash": "d7229a3ac65974e024210522cb3920e764fddf408e26cb501eb41406e514d6ec"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DECA3D4A02EF5C",
|
||||
"hash": "ea2853b19d937dc4831deaa0fca417ba4362311e0a0a554708d1486f7535bd58"
|
||||
}
|
||||
},
|
||||
"0.25.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE9D74861DFA1C",
|
||||
"hash": "3bcd62bb8353e967018c17e4af3a908255c6e1764ab5b3e10e985193ca5750a8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE9D7486AAF55F",
|
||||
"hash": "e456d56052049748ceb113eb93e5929a0278db94e3acdc159bcefc7260aea7cf"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE9D7486219F83",
|
||||
"hash": "e478565b1e1aac58bf16fbb443b5706b3e1facbfb6d0a47c94ea6b51ae0c5482"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE9D7486204178",
|
||||
"hash": "dacd2874adf145ce0ff401d503652e92a8fd391d2f1f89d4f8ac274f925ec525"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE9D7486239913",
|
||||
"hash": "a72bc2194fcef04e16ef4cde1c114052d03fac4dfc9ab85e0f9844ddaa074259"
|
||||
}
|
||||
},
|
||||
"0.25.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE7B5765BA6036",
|
||||
"hash": "a9cbf821d42bc12a91b853d1fc8c3ffbea19bd8a6096d8db8b39263f1f67da74"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE7B576667DE0B",
|
||||
"hash": "07af8e3adbac202a0d09b97d281dcdb24949d642e43c101ea2a1a0d09aff7bd0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE7B5765C15D32",
|
||||
"hash": "a81e3091acda45b37e375af3399b70c278e9ea365ea92b68660ad5d7943ac85f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE7B5765BF8A80",
|
||||
"hash": "287575b705cdd4a037baef75adcd8813566c4fda2eba5399483a9cbad8be7422"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE7B5765BC80A1",
|
||||
"hash": "b066a20cf1c18bdad4daee223014a8635d2189ff80c2c8a921967968cfe20d46"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,136 +0,0 @@
|
||||
{
|
||||
"rust_crate": "rafn",
|
||||
"template": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/voron-software/rafn/releases/download/v${version}/rafn-x86_64-unknown-linux-gnu.tar.gz"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/voron-software/rafn/releases/download/v${version}/rafn-x86_64-apple-darwin.tar.gz"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/voron-software/rafn/releases/download/v${version}/rafn-x86_64-pc-windows-msvc.zip"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/voron-software/rafn/releases/download/v${version}/rafn-aarch64-unknown-linux-gnu.tar.gz"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/voron-software/rafn/releases/download/v${version}/rafn-aarch64-apple-darwin.tar.gz"
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.1.6"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.6"
|
||||
},
|
||||
"0.1.6": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DF09F840E39E8F",
|
||||
"hash": "385e5f4f2670d49eafee07374193cdab70e39147750e1d31e13b167bcb90de0e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF09F840E1CBDE",
|
||||
"hash": "24b53600be109d8fc20e2af77b67aa49b6b85a3d1aca43d017018f2d74bc38b6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF09F840C6259E",
|
||||
"hash": "c3abc5d6557d6caac2be873396e780fb401754c9016e69f6322c209860a9cb3d"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DF09F840F53E0F",
|
||||
"hash": "66462ef6a1ed5010cc68389850e73199f8f6ebf7db16f9f741b08954ebaa4ccf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF09F840E1096B",
|
||||
"hash": "5a05693999221ff23cb1a353351231271dfc69cd4032d0d00a3493d5ccf46365"
|
||||
}
|
||||
},
|
||||
"0.1.5": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DF0072D174FE6A",
|
||||
"hash": "86aaf344b6c7274fdb8641908c1c1fc43a3f2af4932700564e06b996cc2660a1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF0072D1709694",
|
||||
"hash": "b823ce18629dcced51a188b0d355b3175fecf7dc61c3c23f03e28bf9e884493b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF0072D17B1211",
|
||||
"hash": "177512b4fe84fab4fac9334202c356e1b61bc766214939c794fc84df17200efe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DF0072D17489BA",
|
||||
"hash": "ddde9a6d2a4ec663f5c4822d3af20287b4866dc49d6826d3e5ab6851483bc147"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF0072D17EB779",
|
||||
"hash": "3b419335d0efb3fa7dae65d68339713754557aa3428c5594b71020d479a1d745"
|
||||
}
|
||||
},
|
||||
"0.1.4": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DF005D0A0EA3ED",
|
||||
"hash": "0dc23b3ce9c4a48a0cccca352d8bd5f64802aeca80b6dfce3d0e98db37e84d94"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DF005D0A12BDFD",
|
||||
"hash": "927004f86e3b0b43cb9d5a35071ea5f944d7c1d1e72ee1a80c953edc85da16ef"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DF005D0A1490B2",
|
||||
"hash": "7e35cf235502ad465edaa0d1e705a24badbab58af46d18430ec364efc922bbc9"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DF005D0A124954",
|
||||
"hash": "aa95b097b0adb9ef607a3bbb68041e4a7e3b7880380946d93e479526976c2428"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DF005D0A1B3FEB",
|
||||
"hash": "373ed608d49a6fefd3bcf41047e2a16b529a40d4f700dab0b274d24c3a8a8154"
|
||||
}
|
||||
},
|
||||
"0.1.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DECFB90F255451",
|
||||
"hash": "9024f2ebe428c728b1b2530ef5387de301c63eb168c2baee6218413cb10e87c1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DECFB90F23F64D",
|
||||
"hash": "2eb716fba3393171154b82380872c7f4d78a6e87199df823a5d47055800e2420"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DECFB90F1BC22A",
|
||||
"hash": "3550dbd12c1ea01c446602910f3883d2082408d1db767266bb7f840f71ee6ea8"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DECFB90F241D46",
|
||||
"hash": "e978f88d99d136d7f4015ab81906ef2240700cee65e0c94da52583e1e31bb11a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DECFB90F266491",
|
||||
"hash": "b1b6915d579e39f7500d935ae838b4ac561f03f2bf0f0a8612abb393425cc135"
|
||||
}
|
||||
},
|
||||
"0.1.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB33A24C981E2",
|
||||
"hash": "5e98f38b73b9fe9f5603322aff3dd3968a42724020eb94619d2c250f48992c65"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB33A24D88C1E",
|
||||
"hash": "abea382747951e749de2c1dc1ba4d3025eda9669d0670a8b23e8dd99686da3a7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB33A24C67806",
|
||||
"hash": "7a615a3a9731a01b9af64677461cfe3340edf712cf7551fc5412da57b1533191"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB33A24C62A3F",
|
||||
"hash": "b0fc095bfeaff9cc39e1807a3d9820de3e108c5d701dda927aef382be89f3461"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB33A24C21043",
|
||||
"hash": "6d979467d6ada1bf295c1ffb3dfbeb227162899a7c041bb56946a3db92e18587"
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user