From b5734045747def22c64e06d983a245dc24c4c496 Mon Sep 17 00:00:00 2001 From: jack-mil <62065280+jack-mil@users.noreply.github.com> Date: Mon, 22 Sep 2025 23:12:47 -0400 Subject: [PATCH] taplo: Update to version 0.10.0 & add arm64 (#7167) Slight naming change upstream, caused Excavator to fail. --- bucket/taplo.json | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/bucket/taplo.json b/bucket/taplo.json index 55536d833b..3683e05907 100644 --- a/bucket/taplo.json +++ b/bucket/taplo.json @@ -1,16 +1,20 @@ { - "version": "0.9.3", + "version": "0.10.0", "description": "A TOML toolkit written in Rust", "homepage": "https://taplo.tamasfe.dev/", "license": "MIT", "architecture": { "64bit": { - "url": "https://github.com/tamasfe/taplo/releases/download/0.9.3/taplo-full-windows-x86_64.zip", - "hash": "8e24648e698cb5c6443de240c36a82287d00cd5b98406f6cb18b06d9ddd46ba6" + "url": "https://github.com/tamasfe/taplo/releases/download/0.10.0/taplo-windows-x86_64.zip", + "hash": "1615eed140039bd58e7089109883b1c434de5d6de8f64a993e6e8c80ca57bdf9" + }, + "arm64": { + "url": "https://github.com/tamasfe/taplo/releases/download/0.10.0/taplo-windows-aarch64.zip", + "hash": "65a50c5d3b78f6014e6bc6d64eb6dc1d4992bc236589c9bb29e5609fc3454674" }, "32bit": { - "url": "https://github.com/tamasfe/taplo/releases/download/0.9.3/taplo-full-windows-x86.zip", - "hash": "a2afd8a0b415edb45e4c18d4ab6cca1530b6bec8820ba51d550ce39912ad3510" + "url": "https://github.com/tamasfe/taplo/releases/download/0.10.0/taplo-windows-x86.zip", + "hash": "b825701daab10dcfc0251e6d668cd1a9c0e351e7f6762dd20844c3f3f3553aa0" } }, "bin": "taplo.exe", @@ -20,10 +24,13 @@ "autoupdate": { "architecture": { "64bit": { - "url": "https://github.com/tamasfe/taplo/releases/download/$version/taplo-full-windows-x86_64.zip" + "url": "https://github.com/tamasfe/taplo/releases/download/$version/taplo-windows-x86_64.zip" + }, + "arm64": { + "url": "https://github.com/tamasfe/taplo/releases/download/$version/taplo-windows-aarch64.zip" }, "32bit": { - "url": "https://github.com/tamasfe/taplo/releases/download/$version/taplo-full-windows-x86.zip" + "url": "https://github.com/tamasfe/taplo/releases/download/$version/taplo-windows-x86.zip" } } }