From c9261725e6e1bb4637cd4bb98f149cfa45290699 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Thu, 8 Feb 2024 04:37:54 +1000 Subject: [PATCH] cargo-binstall: Add version 1.6.0 (#5453) * cargo-binstall: Add version 1.6.0 Closes #5373 * Fix json typo in `cargo-binstall.json` * Add hash for binarines to `cargo-binstall.json` --- bucket/cargo-binstall.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 bucket/cargo-binstall.json diff --git a/bucket/cargo-binstall.json b/bucket/cargo-binstall.json new file mode 100644 index 0000000000..8b103eb8c9 --- /dev/null +++ b/bucket/cargo-binstall.json @@ -0,0 +1,30 @@ +{ + "version": "1.6.0", + "description": "Binary installation for rust projects", + "homepage": "https://github.com/cargo-bins/cargo-binstall", + "license": "GPL-3.0-only", + "architecture": { + "64bit": { + "url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.6.0/cargo-binstall-x86_64-pc-windows-msvc.zip", + "hash": "sha256:0D37A0B39DFEE1E48F4FB38E9028DA81A0D7F78B66BD2DF1FA5A64DE786249BA" + }, + "arm64": { + "url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.6.0/cargo-binstall-aarch64-pc-windows-msvc.zip", + "hash": "sha256:E3D01324E569DC4C7E09370D3B80FBE35870055D5EF8C6A0FD5F724DDA7ADA4E" + } + }, + "bin": "cargo-binstall.exe", + "checkver": { + "github": "https://github.com/cargo-bins/cargo-binstall" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v$version/cargo-binstall-x86_64-pc-windows-msvc.zip", + }, + "arm64": { + "url": "https://github.com/cargo-bins/cargo-binstall/releases/download/v$version/cargo-binstall-aarch64-pc-windows-msvc.zip", + } + } + } +}