mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-23 07:40:40 +00:00
Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35aa40986a | ||
|
|
1ca3b4160c | ||
|
|
da8fe73ed8 | ||
|
|
468184505a | ||
|
|
190257f600 | ||
|
|
6e4ebe4256 | ||
|
|
337a9618c7 | ||
|
|
22578ebfbe | ||
|
|
e51c197f82 | ||
|
|
b7ca6193f4 | ||
|
|
f3e9a65cfd | ||
|
|
222ac5e37c | ||
|
|
e73edba6ce | ||
|
|
fbf872d19b | ||
|
|
3b8ff55376 | ||
|
|
0d892dd50e | ||
|
|
95d91b64c9 | ||
|
|
dd522f255c | ||
|
|
10c4c369c5 | ||
|
|
e84c329a30 | ||
|
|
49249f98b2 | ||
|
|
e6550525d2 | ||
|
|
f2b65a3e67 | ||
|
|
96d4cbffb8 | ||
|
|
cbe4754a6b | ||
|
|
11053896c3 | ||
|
|
e920d2b2a9 | ||
|
|
7b2b0dffb4 | ||
|
|
164f59de46 | ||
|
|
0b73cec6bf | ||
|
|
02552a37bb | ||
|
|
f10ce91bf6 | ||
|
|
7ea7a2c18f | ||
|
|
f172798ba0 | ||
|
|
c2de2506f2 | ||
|
|
fa71ab6d46 | ||
|
|
55ca367f68 |
@@ -8,8 +8,6 @@ disallowed-macros = [
|
|||||||
{ path = "std::dbg", reason = "it is okay to use during development, but please do not include it in main branch" },
|
{ path = "std::dbg", reason = "it is okay to use during development, but please do not include it in main branch" },
|
||||||
]
|
]
|
||||||
disallowed-methods = [
|
disallowed-methods = [
|
||||||
{ path = "std::env::remove_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
|
|
||||||
{ path = "std::env::set_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
|
|
||||||
]
|
]
|
||||||
disallowed-types = [
|
disallowed-types = [
|
||||||
]
|
]
|
||||||
|
|||||||
2
.github/.cspell/project-dictionary.txt
vendored
2
.github/.cspell/project-dictionary.txt
vendored
@@ -21,9 +21,7 @@ mirrorlist
|
|||||||
nextest
|
nextest
|
||||||
pluginconf
|
pluginconf
|
||||||
protoc
|
protoc
|
||||||
pubkey
|
|
||||||
pwsh
|
pwsh
|
||||||
QQSTRING
|
|
||||||
quickinstall
|
quickinstall
|
||||||
rclone
|
rclone
|
||||||
rdme
|
rdme
|
||||||
|
|||||||
8
.github/dependabot.yml
vendored
8
.github/dependabot.yml
vendored
@@ -7,6 +7,10 @@ updates:
|
|||||||
commit-message:
|
commit-message:
|
||||||
prefix: ''
|
prefix: ''
|
||||||
labels: []
|
labels: []
|
||||||
|
groups:
|
||||||
|
cargo:
|
||||||
|
patterns:
|
||||||
|
- '*'
|
||||||
- package-ecosystem: github-actions
|
- package-ecosystem: github-actions
|
||||||
directory: /
|
directory: /
|
||||||
schedule:
|
schedule:
|
||||||
@@ -14,3 +18,7 @@ updates:
|
|||||||
commit-message:
|
commit-message:
|
||||||
prefix: ''
|
prefix: ''
|
||||||
labels: []
|
labels: []
|
||||||
|
groups:
|
||||||
|
github-actions:
|
||||||
|
patterns:
|
||||||
|
- '*'
|
||||||
|
|||||||
31
.github/workflows/ci.yml
vendored
31
.github/workflows/ci.yml
vendored
@@ -147,18 +147,7 @@ jobs:
|
|||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
container: ${{ matrix.container }}
|
container: ${{ matrix.container }}
|
||||||
steps:
|
steps:
|
||||||
- name: Install requirements (ubuntu:14.04)
|
- name: Install requirements (old debian)
|
||||||
run: |
|
|
||||||
set -CeEuxo pipefail
|
|
||||||
# ubuntu 14.04's jq is 1.3
|
|
||||||
# error: syntax error, unexpected QQSTRING_START, expecting $end
|
|
||||||
# https://github.com/jqlang/jq/issues/273
|
|
||||||
apt-get -o Acquire::Retries=10 -qq update
|
|
||||||
apt-get -o Acquire::Retries=10 -o Dpkg::Use-Pty=0 install -y --no-install-recommends ca-certificates curl
|
|
||||||
curl --proto '=https' --tlsv1.2 -fsSL --retry 10 -o /usr/local/bin/jq https://github.com/jqlang/jq/releases/download/jq-1.5/jq-linux64
|
|
||||||
chmod +x /usr/local/bin/jq
|
|
||||||
if: startsWith(matrix.container, 'ubuntu:14.04')
|
|
||||||
- name: Install requirements (debian:9)
|
|
||||||
run: |
|
run: |
|
||||||
set -CeEuxo pipefail
|
set -CeEuxo pipefail
|
||||||
# In Debian, the old repositories is removed from the main mirrors some time after EoL.
|
# In Debian, the old repositories is removed from the main mirrors some time after EoL.
|
||||||
@@ -182,12 +171,7 @@ jobs:
|
|||||||
./configure --prefix=/usr/local --with-ssl
|
./configure --prefix=/usr/local --with-ssl
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
# CentOS 6's jq is 1.3
|
# for checkout-action https://github.com/taiki-e/checkout-action/blob/v1.3.0/.github/workflows/ci.yml#L135-L143
|
||||||
# error: syntax error, unexpected QQSTRING_START, expecting $end
|
|
||||||
# https://github.com/jqlang/jq/issues/273
|
|
||||||
curl --proto '=https' --tlsv1.2 -fsSL --retry 10 -o /usr/local/bin/jq https://github.com/jqlang/jq/releases/download/jq-1.5/jq-linux64
|
|
||||||
chmod +x /usr/local/bin/jq
|
|
||||||
# for checkout-action https://github.com/taiki-e/checkout-action/blob/87380fc33ed8e04e325b05d3576995b2253ab5ba/.github/workflows/ci.yml#L134-L142
|
|
||||||
yum install -y openssh-clients perl perl-Error perl-TermReadKey rsync
|
yum install -y openssh-clients perl perl-Error perl-TermReadKey rsync
|
||||||
rpm -i \
|
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/p/perl-Git18-1.8.5.5-4.ius.el6.noarch.rpm \
|
||||||
@@ -214,8 +198,8 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: read
|
||||||
pull-requests: write
|
pull-requests: write # for gh pr review --approve
|
||||||
steps:
|
steps:
|
||||||
- uses: taiki-e/checkout-action@v1
|
- uses: taiki-e/checkout-action@v1
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
@@ -231,13 +215,12 @@ jobs:
|
|||||||
- id: diff
|
- id: diff
|
||||||
run: tools/ci/manifest.sh
|
run: tools/ci/manifest.sh
|
||||||
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main')
|
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main')
|
||||||
- name: Create PR
|
- id: create-pull-request
|
||||||
id: create-pull-request
|
uses: peter-evans/create-pull-request@v7
|
||||||
uses: peter-evans/create-pull-request@v6
|
|
||||||
with:
|
with:
|
||||||
title: Update manifest
|
title: Update manifest
|
||||||
body: |
|
body: |
|
||||||
Auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request).
|
Auto-generated by CI using [create-pull-request](https://github.com/peter-evans/create-pull-request).
|
||||||
|
|
||||||
This will be auto-merged when CI has passed because this is an auto-generated PR in a defined format and is usually considered no additional review is required.
|
This will be auto-merged when CI has passed because this is an auto-generated PR in a defined format and is usually considered no additional review is required.
|
||||||
branch: update-manifest
|
branch: update-manifest
|
||||||
|
|||||||
74
CHANGELOG.md
74
CHANGELOG.md
@@ -10,6 +10,66 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.43.2] - 2024-09-09
|
||||||
|
|
||||||
|
- Update `rclone@latest` to 1.68.0.
|
||||||
|
|
||||||
|
## [2.43.1] - 2024-09-07
|
||||||
|
|
||||||
|
- Update `cargo-lambda@latest` to 1.4.0.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.4.
|
||||||
|
|
||||||
|
## [2.43.0] - 2024-09-06
|
||||||
|
|
||||||
|
- Support `cargo-lambda`. ([#601](https://github.com/taiki-e/install-action/pull/601), thanks @jayvdb)
|
||||||
|
|
||||||
|
## [2.42.42] - 2024-09-06
|
||||||
|
|
||||||
|
- Update `cargo-nextest@latest` to 0.9.78.
|
||||||
|
|
||||||
|
## [2.42.41] - 2024-09-04
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.24.5.
|
||||||
|
|
||||||
|
## [2.42.40] - 2024-09-03
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.24.4.
|
||||||
|
|
||||||
|
- Update `cargo-semver-checks@latest` to 0.35.0.
|
||||||
|
|
||||||
|
## [2.42.39] - 2024-09-03
|
||||||
|
|
||||||
|
- Update `cargo-llvm-cov@latest` to 0.6.12.
|
||||||
|
|
||||||
|
## [2.42.38] - 2024-09-03
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.24.3.
|
||||||
|
|
||||||
|
- Relax jq version requirement to 1.3 (no longer need to install the newer version of jq when using this action on Ubuntu 14.04/CentOS 6 containers/self-hosted runners).
|
||||||
|
|
||||||
|
## [2.42.37] - 2024-08-30
|
||||||
|
|
||||||
|
- Update `cargo-make@latest` to 0.37.16.
|
||||||
|
|
||||||
|
## [2.42.36] - 2024-08-29
|
||||||
|
|
||||||
|
- Update `just@latest` to 1.35.0.
|
||||||
|
|
||||||
|
- Update `cargo-nextest@latest` to 0.9.77.
|
||||||
|
|
||||||
|
- Update `protoc@latest` to 3.28.0.
|
||||||
|
|
||||||
|
## [2.42.35] - 2024-08-28
|
||||||
|
|
||||||
|
- Update `protoc@latest` to 3.27.4.
|
||||||
|
|
||||||
|
## [2.42.34] - 2024-08-26
|
||||||
|
|
||||||
|
- Update `cargo-nextest@latest` to 0.9.76.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.3.
|
||||||
|
|
||||||
## [2.42.33] - 2024-08-24
|
## [2.42.33] - 2024-08-24
|
||||||
|
|
||||||
- Update `git-cliff@latest` to 2.5.0.
|
- Update `git-cliff@latest` to 2.5.0.
|
||||||
@@ -2644,7 +2704,19 @@ Note: This release is considered a breaking change because installing on version
|
|||||||
|
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.42.33...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.43.2...HEAD
|
||||||
|
[2.43.2]: https://github.com/taiki-e/install-action/compare/v2.43.1...v2.43.2
|
||||||
|
[2.43.1]: https://github.com/taiki-e/install-action/compare/v2.43.0...v2.43.1
|
||||||
|
[2.43.0]: https://github.com/taiki-e/install-action/compare/v2.42.42...v2.43.0
|
||||||
|
[2.42.42]: https://github.com/taiki-e/install-action/compare/v2.42.41...v2.42.42
|
||||||
|
[2.42.41]: https://github.com/taiki-e/install-action/compare/v2.42.40...v2.42.41
|
||||||
|
[2.42.40]: https://github.com/taiki-e/install-action/compare/v2.42.39...v2.42.40
|
||||||
|
[2.42.39]: https://github.com/taiki-e/install-action/compare/v2.42.38...v2.42.39
|
||||||
|
[2.42.38]: https://github.com/taiki-e/install-action/compare/v2.42.37...v2.42.38
|
||||||
|
[2.42.37]: https://github.com/taiki-e/install-action/compare/v2.42.36...v2.42.37
|
||||||
|
[2.42.36]: https://github.com/taiki-e/install-action/compare/v2.42.35...v2.42.36
|
||||||
|
[2.42.35]: https://github.com/taiki-e/install-action/compare/v2.42.34...v2.42.35
|
||||||
|
[2.42.34]: https://github.com/taiki-e/install-action/compare/v2.42.33...v2.42.34
|
||||||
[2.42.33]: https://github.com/taiki-e/install-action/compare/v2.42.32...v2.42.33
|
[2.42.33]: https://github.com/taiki-e/install-action/compare/v2.42.32...v2.42.33
|
||||||
[2.42.32]: https://github.com/taiki-e/install-action/compare/v2.42.31...v2.42.32
|
[2.42.32]: https://github.com/taiki-e/install-action/compare/v2.42.31...v2.42.32
|
||||||
[2.42.31]: https://github.com/taiki-e/install-action/compare/v2.42.30...v2.42.31
|
[2.42.31]: https://github.com/taiki-e/install-action/compare/v2.42.30...v2.42.31
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ members = ["tools/codegen"]
|
|||||||
# This table is shared by projects under github.com/taiki-e.
|
# This table is shared by projects under github.com/taiki-e.
|
||||||
# It is not intended for manual editing.
|
# It is not intended for manual editing.
|
||||||
[workspace.lints.rust]
|
[workspace.lints.rust]
|
||||||
|
deprecated_safe = "warn"
|
||||||
improper_ctypes = "warn"
|
improper_ctypes = "warn"
|
||||||
improper_ctypes_definitions = "warn"
|
improper_ctypes_definitions = "warn"
|
||||||
non_ascii_idents = "warn"
|
non_ascii_idents = "warn"
|
||||||
|
|||||||
@@ -116,10 +116,10 @@ On Linux, if any required tools are missing, this action will attempt to install
|
|||||||
On other platforms, at least the following tools are required:
|
On other platforms, at least the following tools are required:
|
||||||
|
|
||||||
- bash 3.2+
|
- bash 3.2+
|
||||||
- jq 1.5+
|
- jq 1.3+
|
||||||
- curl 7.34+ (or RHEL7/CentOS7's patched curl 7.29)
|
- 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 jq 1.3, and Ubuntu 14.04 (EoL on 2019-04) using jq 1.3 (see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of workaround).
|
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).
|
||||||
|
|
||||||
## Related Projects
|
## Related Projects
|
||||||
|
|
||||||
|
|||||||
1
TOOLS.md
1
TOOLS.md
@@ -20,6 +20,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
|
|||||||
| [**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-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-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-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-lambda**](https://github.com/cargo-lambda/cargo-lambda) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cargo-lambda/cargo-lambda/releases) | Linux, macOS, Windows | [MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE) |
|
||||||
| [**cargo-llvm-cov**](https://github.com/taiki-e/cargo-llvm-cov) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-llvm-cov/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-MIT) |
|
| [**cargo-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-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-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) |
|
||||||
|
|||||||
6
main.sh
6
main.sh
@@ -187,7 +187,7 @@ read_manifest() {
|
|||||||
local version="$2"
|
local version="$2"
|
||||||
local manifest
|
local manifest
|
||||||
rust_crate=$(call_jq -r ".rust_crate" "${manifest_dir}/${tool}.json")
|
rust_crate=$(call_jq -r ".rust_crate" "${manifest_dir}/${tool}.json")
|
||||||
manifest=$(call_jq -r ".\"${version}\"" "${manifest_dir}/${tool}.json")
|
manifest=$(call_jq -r ".[\"${version}\"]" "${manifest_dir}/${tool}.json")
|
||||||
if [[ "${manifest}" == "null" ]]; then
|
if [[ "${manifest}" == "null" ]]; then
|
||||||
download_info="null"
|
download_info="null"
|
||||||
return 0
|
return 0
|
||||||
@@ -196,7 +196,7 @@ read_manifest() {
|
|||||||
if [[ "${exact_version}" == "null" ]]; then
|
if [[ "${exact_version}" == "null" ]]; then
|
||||||
exact_version="${version}"
|
exact_version="${version}"
|
||||||
else
|
else
|
||||||
manifest=$(call_jq -r ".\"${exact_version}\"" "${manifest_dir}/${tool}.json")
|
manifest=$(call_jq -r ".[\"${exact_version}\"]" "${manifest_dir}/${tool}.json")
|
||||||
if [[ "${rust_crate}" != "null" ]]; then
|
if [[ "${rust_crate}" != "null" ]]; then
|
||||||
# TODO: don't hardcode tool name and use 'immediate_yank_reflection' field in base manifest.
|
# TODO: don't hardcode tool name and use 'immediate_yank_reflection' field in base manifest.
|
||||||
case "${tool}" in
|
case "${tool}" in
|
||||||
@@ -213,7 +213,7 @@ read_manifest() {
|
|||||||
fi
|
fi
|
||||||
info "${tool}@${exact_version} is yanked; downgrade to ${previous_stable_version}"
|
info "${tool}@${exact_version} is yanked; downgrade to ${previous_stable_version}"
|
||||||
exact_version="${previous_stable_version}"
|
exact_version="${previous_stable_version}"
|
||||||
manifest=$(jq -r ".\"${exact_version}\"" "${manifest_dir}/${tool}.json")
|
manifest=$(jq -r ".[\"${exact_version}\"]" "${manifest_dir}/${tool}.json")
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
28
manifests/cargo-binstall.json
generated
28
manifests/cargo-binstall.json
generated
@@ -22,32 +22,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.10.2"
|
"version": "1.10.4"
|
||||||
},
|
},
|
||||||
"1.10.2": {
|
"1.10.4": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"etag": "0x8DCBB7AB213ADBF",
|
"etag": "0x8DCCEC7B32C1AF7",
|
||||||
"checksum": "fd6363b26c6ac2a52a6b5b2b37563b75a48971eb78e9300737e978b9fb5478a3"
|
"checksum": "1baf2ef7f15e2baba4ae11f99e72f5914bb764ce763efd716280a3cbcda001ad"
|
||||||
},
|
},
|
||||||
"x86_64_macos": {
|
"x86_64_macos": {
|
||||||
"etag": "0x8DCBB7A97BA9B45",
|
"etag": "0x8DCCEC75B73878F",
|
||||||
"checksum": "fe4ce102872f4b61e4f1786e07225fa8041457a9171593537ad686766e07b631"
|
"checksum": "7755f241782b1d1db20456e600652456ed0c33bfc7c0afdbdb9b2a7b154cac17"
|
||||||
},
|
},
|
||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"etag": "0x8DCBB7B76D83688",
|
"etag": "0x8DCCEC85687D02F",
|
||||||
"checksum": "e63cd05aa7e4705e48bf401f00b86543ee294ad0bce1a398a75997b48022daf8"
|
"checksum": "849316b048649ca2f46f1381da59ca7637a036a0d754f1a52ffcbf94b2f00fd7"
|
||||||
},
|
},
|
||||||
"aarch64_linux_musl": {
|
"aarch64_linux_musl": {
|
||||||
"etag": "0x8DCBB7A742FFE12",
|
"etag": "0x8DCCEC7642DAD22",
|
||||||
"checksum": "2eac2871acb50f377de6e4a2113a28b9bc5d278e692abbd2f09c3d966d117749"
|
"checksum": "ff90d9cec61d4eeeb86ad9cb11998b7ce8468690d670a40e24822f07381ca899"
|
||||||
},
|
},
|
||||||
"aarch64_macos": {
|
"aarch64_macos": {
|
||||||
"etag": "0x8DCBB7AC648D69B",
|
"etag": "0x8DCCEC7AB95F549",
|
||||||
"checksum": "feb4992ad7c91a36a6fa51b188f594ac7ac1a8c50f8c8a6d6c0a5e0da369843d"
|
"checksum": "72a5e248c78dc163ed983e5e0d622d9b8b7de973157939d3b9b7226858cc423c"
|
||||||
},
|
},
|
||||||
"aarch64_windows": {
|
"aarch64_windows": {
|
||||||
"etag": "0x8DCBB7B016AB019",
|
"etag": "0x8DCCEC82CA9A245",
|
||||||
"checksum": "bd7c761acb022bf5b1b710d0111172fa5f7297059e79cc03cd7c050506cc2a2e"
|
"checksum": "1d8c6d53fafcc2c932fffb60b856bc4a8610e69028c9999779566fbf10f4f695"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
78
manifests/cargo-lambda.json
generated
Normal file
78
manifests/cargo-lambda.json
generated
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
{
|
||||||
|
"rust_crate": "cargo-lambda",
|
||||||
|
"template": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"url": "https://github.com/cargo-lambda/cargo-lambda/releases/download/v${version}/cargo-lambda-v${version}.x86_64-unknown-linux-musl.tar.gz"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/cargo-lambda/cargo-lambda/releases/download/v${version}/cargo-lambda-v${version}.x86_64-apple-darwin.tar.gz"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/cargo-lambda/cargo-lambda/releases/download/v${version}/cargo-lambda-v${version}.windows-x64.zip",
|
||||||
|
"bin": "cargo-lambda.exe"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"url": "https://github.com/cargo-lambda/cargo-lambda/releases/download/v${version}/cargo-lambda-v${version}.aarch64-unknown-linux-musl.tar.gz"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"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.4.0"
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"version": "1.4.0"
|
||||||
|
},
|
||||||
|
"1.4": {
|
||||||
|
"version": "1.4.0"
|
||||||
|
},
|
||||||
|
"1.4.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCCF7559ED57D5",
|
||||||
|
"checksum": "9ce70414d822e3b901403d63598581d2a35b7e16b1e2009308da0b120cb2f280"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCCF755A871607",
|
||||||
|
"checksum": "9c2a9e5427c1de759970d8d51efd50ec2a435ae348804cb4a660f1c3b9b43b16"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCCF755B9D1989",
|
||||||
|
"checksum": "a5ff21d73d42b89973c1d7d7d19ed119561dd98b6d784386d064b9807956a71a"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCCF755DDBF6FB",
|
||||||
|
"checksum": "5cbb3e1291d4c20a5e988eb690a5153f86be44a2fd6bec6485d00ef1e1aa13aa"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCCF755E70162A",
|
||||||
|
"checksum": "ef1a8f5521d1d4d0f08b3de6149c48455395aec7328d7587abcdab83f80d736b"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.3": {
|
||||||
|
"version": "1.3.0"
|
||||||
|
},
|
||||||
|
"1.3.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DC88F48F203CE3",
|
||||||
|
"checksum": "b96973d035b328413fd2a98881f01ab8de8dcaef56c6f826d05dee48925b340f"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DC88F48FB3C08F",
|
||||||
|
"checksum": "49043e568b1d1817b0d7e14b7bd23d0938f37b5a951ad6dbd08e8057a1e2e60b"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DC88F490E653BE",
|
||||||
|
"checksum": "46c19d2c0f977c27f918e24c6e362a080a63cdfbe0c97a79dabe6e375eee72c4"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DC88F4936FA250",
|
||||||
|
"checksum": "6e1f434d70a60180d80f6e61f0fd50272a0e849d5bfa7c64d8df066f85881627"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DC88F493FF59BC",
|
||||||
|
"checksum": "8cd1d176a690d5b3704fae9c58e0e949e481e79eaa24cb5338f5cdfcf564ca05"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
26
manifests/cargo-llvm-cov.json
generated
26
manifests/cargo-llvm-cov.json
generated
@@ -19,10 +19,32 @@
|
|||||||
},
|
},
|
||||||
"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)",
|
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-MIT)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.6.11"
|
"version": "0.6.12"
|
||||||
},
|
},
|
||||||
"0.6": {
|
"0.6": {
|
||||||
"version": "0.6.11"
|
"version": "0.6.12"
|
||||||
|
},
|
||||||
|
"0.6.12": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCCC27E30DDFFC",
|
||||||
|
"checksum": "c3418ea4a59d836a6f91d45a9c1e1fe17653c06b0bed79f31a12dec9b2eb53f5"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCCC28609416EF",
|
||||||
|
"checksum": "8eee90cdc0dc26eb5b676c3e5929de9cbcb657f1d7e175089ac5f7fb62be08f5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCCC282FD2D223",
|
||||||
|
"checksum": "3706ec35c984aab739310dda2802f165d2cf7d296ff0972e1ba7c4daa725295b"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCCC27E4DF5B65",
|
||||||
|
"checksum": "89852820f4384192e6faaf6ecb30f5df3b93690d81b10f77d25c0b3bce4a76ed"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCCC280E8E0C69",
|
||||||
|
"checksum": "bec62ac2c6e9b9497b3879716735b881c280028e2597703bc7ebed538c5c4244"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.6.11": {
|
"0.6.11": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
22
manifests/cargo-make.json
generated
22
manifests/cargo-make.json
generated
@@ -20,10 +20,28 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE)",
|
"license_markdown": "[Apache-2.0](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.37.15"
|
"version": "0.37.16"
|
||||||
},
|
},
|
||||||
"0.37": {
|
"0.37": {
|
||||||
"version": "0.37.15"
|
"version": "0.37.16"
|
||||||
|
},
|
||||||
|
"0.37.16": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCC8F28CD820A7",
|
||||||
|
"checksum": "54bc9f44bf4508c058652982e8b6e395978e517b088296015f4ad6b7137f62a4"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCC8F295CF7D8B",
|
||||||
|
"checksum": "c1a2cd01898e6b254b9cdf9a1d45a2692ef072ba055d5ad2b195db17595ad271"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCC8F2B45A37B6",
|
||||||
|
"checksum": "337bbb6e9deb13ac7569b32ed3470779f7a430a14c716f335b2f13ea0ba8cae6"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCC8F25FFD15DA",
|
||||||
|
"checksum": "57c6d62c0ac8ae7c3736655834b17b81935ed05717399090ce143dc7118d1ce7"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.37.15": {
|
"0.37.15": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
73
manifests/cargo-nextest.json
generated
73
manifests/cargo-nextest.json
generated
@@ -19,10 +19,79 @@
|
|||||||
},
|
},
|
||||||
"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)",
|
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.9.75"
|
"version": "0.9.78"
|
||||||
},
|
},
|
||||||
"0.9": {
|
"0.9": {
|
||||||
"version": "0.9.75"
|
"version": "0.9.78"
|
||||||
|
},
|
||||||
|
"0.9.78": {
|
||||||
|
"previous_stable_version": "0.9.77",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DCCDFBD47BF354",
|
||||||
|
"checksum": "8645c43d0116fc1608c9d149377b0fcffcf01ec12cba3da34567ab74e02049c9"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCCDFC05E94BF4",
|
||||||
|
"checksum": "cb5c9565ba962f07262a267ad83aa4f755d2311a79b1b23d8783c8838d31347f"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCCDFC02DF9CF4",
|
||||||
|
"checksum": "26859987b4470ce80a93e017656034fb28217e135c6110fa66ab373f97670ccd"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCCDFC2F357FFE",
|
||||||
|
"checksum": "ef046ec2969c03558d7e2b2ee360a4ed58f92bc86a7f9b4e59c323d69aa2a602"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DCCDFBEFE9BDF8",
|
||||||
|
"checksum": "dc8b62624a5f334a9b3fcd784008c39c412ef880158ba73e2f3abd156194cbab"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.9.77": {
|
||||||
|
"previous_stable_version": "0.9.76",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DCC7AA37E7E7E7",
|
||||||
|
"checksum": "31f288399a8b735f02383913491dc5f1b2a2ddbfacec7c8424dfb94444a4bc43"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCC7AAAA74072C",
|
||||||
|
"checksum": "f3a91b9f9ad1e005e03ad57a87cd2f90e4ad266e4b85af209241c0770a0c7815"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCC7AA377B214D",
|
||||||
|
"checksum": "667883fd4a122dfdfcb70b4d563f4046c9dc3c38b5b25d9c559fa02044d11e9b"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCC7AAC7B09110",
|
||||||
|
"checksum": "5f733822b21153141e741bfc765a517f7f1eb2ab6e1f65a5db5555a7f4899d3d"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DCC7AA5A183DCB",
|
||||||
|
"checksum": "a4035e63d33ac2c96371ab134a61613c3cb0ae4b03fc5ad54c2712e79afd9f16"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.9.76": {
|
||||||
|
"previous_stable_version": "0.9.75",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DCC543B2472AD2",
|
||||||
|
"checksum": "5182728930c420ce3cd9c5ca8066364e4be296a29cd0a6c0dc3be7f0177be6fb"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCC543D7FCE3B8",
|
||||||
|
"checksum": "2321c12e14102554220c1d310416bbf5e5a8432b47cbfc5b5659bf78ec8f2186"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCC5438B271C99",
|
||||||
|
"checksum": "f4dbdf8f2442eaccf2bbaafad54438d2de693e4db8855aad3e2f533fb1025989"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCC543F76F8DEE",
|
||||||
|
"checksum": "f9c76e7c3ddeb7595fa866d74714446d206096207bef8a4b895a871f4275142b"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DCC54392F83244",
|
||||||
|
"checksum": "48ebd1f859fe1a6f76829893a002806bc771e7eb340a089c3283ec1cbc524e1a"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.9.75": {
|
"0.9.75": {
|
||||||
"previous_stable_version": "0.9.74",
|
"previous_stable_version": "0.9.74",
|
||||||
|
|||||||
23
manifests/cargo-semver-checks.json
generated
23
manifests/cargo-semver-checks.json
generated
@@ -16,7 +16,28 @@
|
|||||||
},
|
},
|
||||||
"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)",
|
"license_markdown": "[Apache-2.0](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-MIT)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.34.0"
|
"version": "0.35.0"
|
||||||
|
},
|
||||||
|
"0.35": {
|
||||||
|
"version": "0.35.0"
|
||||||
|
},
|
||||||
|
"0.35.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCCC35A9455766",
|
||||||
|
"checksum": "f97cf94cf14500a88217135b7cbde5e0cc11ba274670211f7cd7d26b7f41c254"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCCC3573F81C49",
|
||||||
|
"checksum": "7208a6b4468128c6942c369c54f2e78f58c8a916cc695f6df4d122e7d9d86efd"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCCC367877571E",
|
||||||
|
"checksum": "ee3282df02bf183d8c44bc6a72f3c7c80e9ee2626766dc759105910f100f2393"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCCC35714A58DA",
|
||||||
|
"checksum": "2b7c74bdf8f3e87b8076ab5bb9d6d9754bbd3d420c5ac7e14e44e08af4e9f924"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.34": {
|
"0.34": {
|
||||||
"version": "0.34.0"
|
"version": "0.34.0"
|
||||||
|
|||||||
29
manifests/just.json
generated
29
manifests/just.json
generated
@@ -19,10 +19,35 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.34.0"
|
"version": "1.35.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.34.0"
|
"version": "1.35.0"
|
||||||
|
},
|
||||||
|
"1.35": {
|
||||||
|
"version": "1.35.0"
|
||||||
|
},
|
||||||
|
"1.35.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCC7B014F47FBB",
|
||||||
|
"checksum": "c4172306e241bd175c07316156a610593fa2b687ac49418520a375605d7cead4"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCC7AFEA81141B",
|
||||||
|
"checksum": "d947700b3bd86ec5dc146f2d7fa6046010135d01ab6488bd65451b46acf3aeb6"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCC7B04ECF0176",
|
||||||
|
"checksum": "b53aebf423e701fb94442af8e7cf20400bc7bed46de297c6e0e9eb9c6fdb24e2"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCC7AFFDAA1BE1",
|
||||||
|
"checksum": "a94c75426239fce8c1e7fdfccd20d60d987924f91ac45c843a14cd72d4d71e73"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCC7AFF5497587",
|
||||||
|
"checksum": "898cc0623112a5912ef2dd891020d68e6b8eba9250c76460547f1703e550fabb"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.34": {
|
"1.34": {
|
||||||
"version": "1.34.0"
|
"version": "1.34.0"
|
||||||
|
|||||||
63
manifests/protoc.json
generated
63
manifests/protoc.json
generated
@@ -3,13 +3,70 @@
|
|||||||
"template": null,
|
"template": null,
|
||||||
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "3.27.3"
|
"version": "3.28.0"
|
||||||
},
|
},
|
||||||
"3": {
|
"3": {
|
||||||
"version": "3.27.3"
|
"version": "3.28.0"
|
||||||
|
},
|
||||||
|
"3.28": {
|
||||||
|
"version": "3.28.0"
|
||||||
|
},
|
||||||
|
"3.28.0": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.0/protoc-28.0-linux-x86_64.zip",
|
||||||
|
"etag": "0x8DCC79A6BA9F65A",
|
||||||
|
"checksum": "b2e187c8b9f2d97cd3ecae4926d1bb2cbebe3ab768e7c987cbc86bb17f319358"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.0/protoc-28.0-osx-x86_64.zip",
|
||||||
|
"etag": "0x8DCC79A6BCCE754",
|
||||||
|
"checksum": "92186702964437d3ba2ac3427bb906d9f6b92219ddb3c397a2e734d70be59046"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.0/protoc-28.0-win64.zip",
|
||||||
|
"etag": "0x8DCC79A6BFBD8CC",
|
||||||
|
"checksum": "349654eb0a66a37a7a8aabb89a32379216e7188233dfc6167d40f16f0932a205"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.0/protoc-28.0-linux-aarch_64.zip",
|
||||||
|
"etag": "0x8DCC79A6B594B06",
|
||||||
|
"checksum": "d622619dcbfb5ecb281cfb92c1a74d6a0f42e752d9a2774b197f475f7ab1c8c4"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.0/protoc-28.0-osx-aarch_64.zip",
|
||||||
|
"etag": "0x8DCC79A6BAE8512",
|
||||||
|
"checksum": "4e05879bb7f5b6209461e0cff58c20dfcb117bede7d4737ed8ec6383074fda24"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"3.27": {
|
"3.27": {
|
||||||
"version": "3.27.3"
|
"version": "3.27.4"
|
||||||
|
},
|
||||||
|
"3.27.4": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.4/protoc-27.4-linux-x86_64.zip",
|
||||||
|
"etag": "0x8DCC6DA79711D5B",
|
||||||
|
"checksum": "20a977d023a47a7f27557aa144eb2c06baa6f623784e34d8a13d9abb6f6bc6c0"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.4/protoc-27.4-osx-x86_64.zip",
|
||||||
|
"etag": "0x8DCC6DA79A0F821",
|
||||||
|
"checksum": "a0c0e3f900ce3bd99db8b378b25bdbaaf42fe060037d06bdbdb0e0a813f3032c"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.4/protoc-27.4-win64.zip",
|
||||||
|
"etag": "0x8DCC6DA79CDC90F",
|
||||||
|
"checksum": "7e48cfe4fe21d605a7b37be32514ef66692663a1aa280b9d84edaec851183daa"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.4/protoc-27.4-linux-aarch_64.zip",
|
||||||
|
"etag": "0x8DCC6DA790B2D54",
|
||||||
|
"checksum": "2399fa9e634880e70a8aa760b1b164ea0a8e8acac3bf541e732f9b3ade312cc9"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.4/protoc-27.4-osx-aarch_64.zip",
|
||||||
|
"etag": "0x8DCC6DA7977F370",
|
||||||
|
"checksum": "52aa0b3f95972ffb9363a07f7944683c72213ab2fbfc8bbc315837e26c5e4311"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"3.27.3": {
|
"3.27.3": {
|
||||||
"x86_64_linux_gnu": {
|
"x86_64_linux_gnu": {
|
||||||
|
|||||||
33
manifests/rclone.json
generated
33
manifests/rclone.json
generated
@@ -28,10 +28,39 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.67.0"
|
"version": "1.68.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.67.0"
|
"version": "1.68.0"
|
||||||
|
},
|
||||||
|
"1.68": {
|
||||||
|
"version": "1.68.0"
|
||||||
|
},
|
||||||
|
"1.68.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCD021695DFEC9",
|
||||||
|
"checksum": "2462de3234dc581db6ed8353625926bfabdfa7286b37f99cd733a84eba70c17c"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCD02224137B7F",
|
||||||
|
"checksum": "3a7ac232883e1e90e9c2c72c327f6a73d4701c23b94f4dba4b09aed3ee5038fe"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCD0225941B88D",
|
||||||
|
"checksum": "b16769a2f839d0322db6d80d2bf7f7f0c13174a9482d2163384783a60113521c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCD0217EBFA66E",
|
||||||
|
"checksum": "1ff887245f07ce722b9245c9aa984a841b6ba47d719842b1ada6be85e08695dc"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCD0222BEF1202",
|
||||||
|
"checksum": "c037225f85a2fa7a78cc77a241de0a6a3d62dc6ea2b0a2fd668d50511244f559"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCD0226038A92C",
|
||||||
|
"checksum": "f0a29169078a443413e67d9decec3c468be7295ae84fe3313864fd4148f83ece"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.67": {
|
"1.67": {
|
||||||
"version": "1.67.0"
|
"version": "1.67.0"
|
||||||
|
|||||||
78
manifests/typos.json
generated
78
manifests/typos.json
generated
@@ -16,13 +16,85 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.24.1"
|
"version": "1.24.5"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.24.1"
|
"version": "1.24.5"
|
||||||
},
|
},
|
||||||
"1.24": {
|
"1.24": {
|
||||||
"version": "1.24.1"
|
"version": "1.24.5"
|
||||||
|
},
|
||||||
|
"1.24.5": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCCCF515D34074",
|
||||||
|
"checksum": "e23dcb000e0db3351c57c8954b53557bee2c844308a10c11c2cf8de1f2583871"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCCCF51B808613",
|
||||||
|
"checksum": "b13d36015f59d9897e783e8b7ea6b047c319b3885a4ea4939a550f808363300d"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCCCF5CBFC9CAD",
|
||||||
|
"checksum": "fbea0788f5701ebd2987382e1ee70f0735ad80b46c42e88bac8e490b59fff3d2"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCCCF516860FF0",
|
||||||
|
"checksum": "53703df22e929e9468f746f6d2231ef51907bd7b34b600becbce5a2465d69df8"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.24.4": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCCC598D1368C1",
|
||||||
|
"checksum": "efa32f257066a98792489a549de0f799c4cc05ad3500d3d553ce198764dd584b"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCCC598904BBAC",
|
||||||
|
"checksum": "a868175c4dbe7e73da9fd352626ecfe81849d2cb43c8c4f547b252d8bc27fd08"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCCC59D2CEBE40",
|
||||||
|
"checksum": "efff9f29649c3dc0ef7a574a53d445bbdcf88cbc6a24b4fd4fd58b77ddc9c500"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCCC5987C36C31",
|
||||||
|
"checksum": "94ac0abaab0b18f3b9af471d6481d484cab67b2666b10f00a455c0c2c0cd1ed7"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.24.3": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCC937E17972E7",
|
||||||
|
"checksum": "023136119787a3fbd886423b5fc2e2cd29377dcad7642a0f4edf657253141dcf"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCC937D42C5529",
|
||||||
|
"checksum": "eb6f2421d90f1bdc7ad00d5e78ece3115f260b06b339aee30dc5ac3066cca5d2"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCC938308E0D62",
|
||||||
|
"checksum": "3e6c99c10cf5fe243c16e5a4afb96d55c28158a37d3dcd226c1b1b610284a0c9"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCC937D08E14DC",
|
||||||
|
"checksum": "3ef81441b60a59cb14198af55050d3595d0859d8477076069f7b28ae947946fe"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.24.2": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCC930B8BCB792",
|
||||||
|
"checksum": "bdf70e9d591dfe31bcdde8af1b801fe1f7735c14f2b968c99d0351168400e59a"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCC930A1280EA4",
|
||||||
|
"checksum": "3c13ffc7ad0c0a812e3b38808c47638fe1091f7fd2a7b6e68d4687f985f9b61e"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCC930F436F6CC",
|
||||||
|
"checksum": "8ed7c7c94c09ba24c06985ae95bd3b04a54883b09650d236f67b1ad3717ec63f"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCC930A9F04F21",
|
||||||
|
"checksum": "09f7bb42b1b1ab835ee94eabbec728e5ebb2db23bd572636d6caf03d4335d9f2"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.24.1": {
|
"1.24.1": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
17
tools/codegen/base/cargo-lambda.json
Normal file
17
tools/codegen/base/cargo-lambda.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"repository": "https://github.com/cargo-lambda/cargo-lambda",
|
||||||
|
"tag_prefix": "v",
|
||||||
|
"rust_crate": "${package}",
|
||||||
|
"asset_name": "${package}-v${version}.${rust_target}.tar.gz",
|
||||||
|
"version_range": ">= 1.3.0",
|
||||||
|
"platform": {
|
||||||
|
"x86_64_linux_musl": {},
|
||||||
|
"x86_64_macos": {},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"asset_name": "${package}-v${version}.windows-x64.zip",
|
||||||
|
"bin": "${package}${exe}"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {},
|
||||||
|
"aarch64_macos": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||||
|
|
||||||
|
#![allow(clippy::missing_panics_doc, clippy::too_long_first_doc_paragraph)]
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
cmp::{self, Reverse},
|
cmp::{self, Reverse},
|
||||||
collections::BTreeMap,
|
collections::BTreeMap,
|
||||||
@@ -244,8 +246,6 @@ pub struct BaseManifest {
|
|||||||
}
|
}
|
||||||
impl BaseManifest {
|
impl BaseManifest {
|
||||||
/// Validate the manifest.
|
/// Validate the manifest.
|
||||||
// The panic is an assert
|
|
||||||
#[allow(clippy::missing_panics_doc)]
|
|
||||||
pub fn validate(&self) {
|
pub fn validate(&self) {
|
||||||
for bin in self.bin.iter().chain(self.platform.values().flat_map(|m| &m.bin)) {
|
for bin in self.bin.iter().chain(self.platform.values().flat_map(|m| &m.bin)) {
|
||||||
assert!(!bin.as_slice().is_empty());
|
assert!(!bin.as_slice().is_empty());
|
||||||
|
|||||||
Reference in New Issue
Block a user