From cbb63d14cf971e1c7c5b5edfc980310c865727cd Mon Sep 17 00:00:00 2001 From: "Nurul Huda (Apon)" Date: Sun, 29 Mar 2026 01:30:44 +0600 Subject: [PATCH] refactor: remove @zigc to dedicated repo --- pkg/{ziex/npm/@zigc => @ziex}/.gitignore | 0 pkg/@ziex/README.md | 30 + .../@ziex/cli-darwin-arm64/package.json | 10 +- .../@ziex/cli-darwin-x64/package.json | 10 +- .../@ziex/cli-linux-arm64/package.json | 10 +- .../npm => }/@ziex/cli-linux-x64/package.json | 10 +- .../@ziex/cli-win32-arm64/package.json | 10 +- .../npm => }/@ziex/cli-win32-x64/package.json | 10 +- pkg/{ziex/npm => }/@ziex/cli/bin/ziex | 0 pkg/{ziex/npm => }/@ziex/cli/install.cjs | 0 pkg/@ziex/cli/package.json | 27 + pkg/{ziex/npm/@zigc => @ziex}/package.json | 22 +- pkg/@ziex/prepare.sh | 44 + pkg/{ziex/npm/@zigc => @ziex}/verdaccio.yaml | 0 pkg/ziex/npm/@ziex/cli/package.json | 50 - pkg/ziex/npm/@zigc/README.md | 34 - pkg/ziex/npm/@zigc/cli/package.json | 26 - pkg/ziex/npm/@zigc/darwin-arm64/package.json | 20 - pkg/ziex/npm/@zigc/darwin-x64/package.json | 20 - pkg/ziex/npm/@zigc/index.json | 1583 ----------------- pkg/ziex/npm/@zigc/lib/package.json | 10 - pkg/ziex/npm/@zigc/linux-arm64/package.json | 20 - pkg/ziex/npm/@zigc/linux-x64/package.json | 20 - pkg/ziex/npm/@zigc/prepare.sh | 253 --- pkg/ziex/npm/@zigc/win32-arm64/package.json | 20 - pkg/ziex/npm/@zigc/win32-x64/package.json | 20 - 26 files changed, 154 insertions(+), 2105 deletions(-) rename pkg/{ziex/npm/@zigc => @ziex}/.gitignore (100%) create mode 100644 pkg/@ziex/README.md rename pkg/{ziex/npm => }/@ziex/cli-darwin-arm64/package.json (78%) rename pkg/{ziex/npm => }/@ziex/cli-darwin-x64/package.json (77%) rename pkg/{ziex/npm => }/@ziex/cli-linux-arm64/package.json (77%) rename pkg/{ziex/npm => }/@ziex/cli-linux-x64/package.json (77%) rename pkg/{ziex/npm => }/@ziex/cli-win32-arm64/package.json (77%) rename pkg/{ziex/npm => }/@ziex/cli-win32-x64/package.json (78%) rename pkg/{ziex/npm => }/@ziex/cli/bin/ziex (100%) rename pkg/{ziex/npm => }/@ziex/cli/install.cjs (100%) create mode 100644 pkg/@ziex/cli/package.json rename pkg/{ziex/npm/@zigc => @ziex}/package.json (51%) create mode 100755 pkg/@ziex/prepare.sh rename pkg/{ziex/npm/@zigc => @ziex}/verdaccio.yaml (100%) delete mode 100644 pkg/ziex/npm/@ziex/cli/package.json delete mode 100644 pkg/ziex/npm/@zigc/README.md delete mode 100644 pkg/ziex/npm/@zigc/cli/package.json delete mode 100644 pkg/ziex/npm/@zigc/darwin-arm64/package.json delete mode 100644 pkg/ziex/npm/@zigc/darwin-x64/package.json delete mode 100644 pkg/ziex/npm/@zigc/index.json delete mode 100644 pkg/ziex/npm/@zigc/lib/package.json delete mode 100644 pkg/ziex/npm/@zigc/linux-arm64/package.json delete mode 100644 pkg/ziex/npm/@zigc/linux-x64/package.json delete mode 100755 pkg/ziex/npm/@zigc/prepare.sh delete mode 100644 pkg/ziex/npm/@zigc/win32-arm64/package.json delete mode 100644 pkg/ziex/npm/@zigc/win32-x64/package.json diff --git a/pkg/ziex/npm/@zigc/.gitignore b/pkg/@ziex/.gitignore similarity index 100% rename from pkg/ziex/npm/@zigc/.gitignore rename to pkg/@ziex/.gitignore diff --git a/pkg/@ziex/README.md b/pkg/@ziex/README.md new file mode 100644 index 00000000..bb1c25d2 --- /dev/null +++ b/pkg/@ziex/README.md @@ -0,0 +1,30 @@ +# @ziex/cli + +Ziex CLI Node Package Manager (npm) distribution. + +## Usage + +```bash +# Run directly +npx @ziex/cli version +bunx @ziex/cli version + +# Or install globally +npm install -g @ziex/cli +zig version +``` + +## How it works + +The `@ziex/cli` package resolves the correct native binary for your platform via optional dependencies: + +| Package | Platform | +|---------|----------| +| `@ziex/cli-darwin-arm64` | macOS Apple Silicon | +| `@ziex/cli-darwin-x64` | macOS Intel | +| `@ziex/cli-linux-x64` | Linux x64 | +| `@ziex/cli-linux-arm64` | Linux ARM64 | +| `@ziex/cli-win32-x64` | Windows x64 | +| `@ziex/cli-win32-arm64` | Windows ARM64 | + +The standard library is shipped separately in `@ziex/lib` (shared across all platforms). \ No newline at end of file diff --git a/pkg/ziex/npm/@ziex/cli-darwin-arm64/package.json b/pkg/@ziex/cli-darwin-arm64/package.json similarity index 78% rename from pkg/ziex/npm/@ziex/cli-darwin-arm64/package.json rename to pkg/@ziex/cli-darwin-arm64/package.json index cc866a62..6ea4831c 100644 --- a/pkg/ziex/npm/@ziex/cli-darwin-arm64/package.json +++ b/pkg/@ziex/cli-darwin-arm64/package.json @@ -1,9 +1,13 @@ { "name": "@ziex/cli-darwin-arm64", - "version": "0.1.0-dev.0", + "version": "0.1.0-dev.928", "description": "ziex CLI binary for macOS ARM64 (Apple Silicon)", - "os": ["darwin"], - "cpu": ["arm64"], + "os": [ + "darwin" + ], + "cpu": [ + "arm64" + ], "bin": { "zx": "bin/zx", "ziex": "bin/zx" diff --git a/pkg/ziex/npm/@ziex/cli-darwin-x64/package.json b/pkg/@ziex/cli-darwin-x64/package.json similarity index 77% rename from pkg/ziex/npm/@ziex/cli-darwin-x64/package.json rename to pkg/@ziex/cli-darwin-x64/package.json index 1c6168db..07960ae5 100644 --- a/pkg/ziex/npm/@ziex/cli-darwin-x64/package.json +++ b/pkg/@ziex/cli-darwin-x64/package.json @@ -1,9 +1,13 @@ { "name": "@ziex/cli-darwin-x64", - "version": "0.0.0", + "version": "0.1.0-dev.928", "description": "ziex CLI binary for macOS x64 (Intel)", - "os": ["darwin"], - "cpu": ["x64"], + "os": [ + "darwin" + ], + "cpu": [ + "x64" + ], "bin": { "zx": "bin/zx", "ziex": "bin/zx" diff --git a/pkg/ziex/npm/@ziex/cli-linux-arm64/package.json b/pkg/@ziex/cli-linux-arm64/package.json similarity index 77% rename from pkg/ziex/npm/@ziex/cli-linux-arm64/package.json rename to pkg/@ziex/cli-linux-arm64/package.json index 91b60f93..1e68e71f 100644 --- a/pkg/ziex/npm/@ziex/cli-linux-arm64/package.json +++ b/pkg/@ziex/cli-linux-arm64/package.json @@ -1,9 +1,13 @@ { "name": "@ziex/cli-linux-arm64", - "version": "0.0.0", + "version": "0.1.0-dev.928", "description": "ziex CLI binary for Linux ARM64", - "os": ["linux"], - "cpu": ["arm64"], + "os": [ + "linux" + ], + "cpu": [ + "arm64" + ], "bin": { "zx": "bin/zx", "ziex": "bin/zx" diff --git a/pkg/ziex/npm/@ziex/cli-linux-x64/package.json b/pkg/@ziex/cli-linux-x64/package.json similarity index 77% rename from pkg/ziex/npm/@ziex/cli-linux-x64/package.json rename to pkg/@ziex/cli-linux-x64/package.json index 3e877e7a..3e6939d3 100644 --- a/pkg/ziex/npm/@ziex/cli-linux-x64/package.json +++ b/pkg/@ziex/cli-linux-x64/package.json @@ -1,9 +1,13 @@ { "name": "@ziex/cli-linux-x64", - "version": "0.0.0", + "version": "0.1.0-dev.928", "description": "ziex CLI binary for Linux x64", - "os": ["linux"], - "cpu": ["x64"], + "os": [ + "linux" + ], + "cpu": [ + "x64" + ], "bin": { "zx": "bin/zx", "ziex": "bin/zx" diff --git a/pkg/ziex/npm/@ziex/cli-win32-arm64/package.json b/pkg/@ziex/cli-win32-arm64/package.json similarity index 77% rename from pkg/ziex/npm/@ziex/cli-win32-arm64/package.json rename to pkg/@ziex/cli-win32-arm64/package.json index 17cb0e32..3133145c 100644 --- a/pkg/ziex/npm/@ziex/cli-win32-arm64/package.json +++ b/pkg/@ziex/cli-win32-arm64/package.json @@ -1,9 +1,13 @@ { "name": "@ziex/cli-win32-arm64", - "version": "0.0.0", + "version": "0.1.0-dev.928", "description": "ziex CLI binary for Windows ARM64", - "os": ["win32"], - "cpu": ["arm64"], + "os": [ + "win32" + ], + "cpu": [ + "arm64" + ], "bin": { "zx": "bin/zx.exe", "ziex": "bin/zx.exe" diff --git a/pkg/ziex/npm/@ziex/cli-win32-x64/package.json b/pkg/@ziex/cli-win32-x64/package.json similarity index 78% rename from pkg/ziex/npm/@ziex/cli-win32-x64/package.json rename to pkg/@ziex/cli-win32-x64/package.json index 7244f145..de6379c8 100644 --- a/pkg/ziex/npm/@ziex/cli-win32-x64/package.json +++ b/pkg/@ziex/cli-win32-x64/package.json @@ -1,9 +1,13 @@ { "name": "@ziex/cli-win32-x64", - "version": "0.0.0", + "version": "0.1.0-dev.928", "description": "ziex CLI binary for Windows x64", - "os": ["win32"], - "cpu": ["x64"], + "os": [ + "win32" + ], + "cpu": [ + "x64" + ], "bin": { "zx": "bin/zx.exe", "ziex": "bin/zx.exe" diff --git a/pkg/ziex/npm/@ziex/cli/bin/ziex b/pkg/@ziex/cli/bin/ziex similarity index 100% rename from pkg/ziex/npm/@ziex/cli/bin/ziex rename to pkg/@ziex/cli/bin/ziex diff --git a/pkg/ziex/npm/@ziex/cli/install.cjs b/pkg/@ziex/cli/install.cjs similarity index 100% rename from pkg/ziex/npm/@ziex/cli/install.cjs rename to pkg/@ziex/cli/install.cjs diff --git a/pkg/@ziex/cli/package.json b/pkg/@ziex/cli/package.json new file mode 100644 index 00000000..3edb1e2e --- /dev/null +++ b/pkg/@ziex/cli/package.json @@ -0,0 +1,27 @@ +{ + "name": "@ziex/cli", + "version": "0.1.0-dev.928", + "description": "ZX is a framework for building web applications with Zig.", + "type": "module", + "scripts": { + "postinstall": "node install.cjs" + }, + "bin": { + "zx": "bin/zx", + "ziex": "bin/zx" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ziex-dev/ziex.git" + }, + "license": "MIT", + "preferUnplugged": true, + "optionalDependencies": { + "@ziex/cli-darwin-arm64": "0.1.0-dev.928", + "@ziex/cli-darwin-x64": "0.1.0-dev.928", + "@ziex/cli-linux-x64": "0.1.0-dev.928", + "@ziex/cli-linux-arm64": "0.1.0-dev.928", + "@ziex/cli-win32-x64": "0.1.0-dev.928", + "@ziex/cli-win32-arm64": "0.1.0-dev.928" + } +} diff --git a/pkg/ziex/npm/@zigc/package.json b/pkg/@ziex/package.json similarity index 51% rename from pkg/ziex/npm/@zigc/package.json rename to pkg/@ziex/package.json index de9795ec..0ac22578 100644 --- a/pkg/ziex/npm/@zigc/package.json +++ b/pkg/@ziex/package.json @@ -1,25 +1,25 @@ { - "name": "@zigc", - "version": "0.15.20", + "name": "@ziex/org", + "version": "0.1.0-dev.928", "private": true, - "description": "Zig Compiler binary distribution via npm", + "description": "Ziex CLI distribution via npm", "scripts": { "prepare": "bash prepare.sh", "publish": "npm publish --workspaces --access public", "start:registry": "verdaccio --config verdaccio.yaml --listen 4873", "publish:local": "npm publish --workspaces --registry http://localhost:4873", - "syncver": "npm version --ignore-scripts --workspace lib --workspace cli --workspace darwin-arm64 --workspace darwin-x64 --workspace linux-x64 --workspace linux-arm64 --workspace win32-x64 --workspace win32-arm64" + "syncver": "npm version --ignore-scripts --workspace lib --workspace cli --workspace cli-darwin-arm64 --workspace cli-darwin-x64 --workspace cli-linux-x64 --workspace cli-linux-arm64 --workspace cli-win32-x64 --workspace cli-win32-arm64" }, "workspaces": [ - "lib", "cli", - "darwin-arm64", - "darwin-x64", - "linux-x64", - "linux-arm64", - "win32-x64", - "win32-arm64" + "cli-darwin-arm64", + "cli-darwin-x64", + "cli-linux-x64", + "cli-linux-arm64", + "cli-win32-x64", + "cli-win32-arm64" ], + "homepage": "https://ziex.dev", "repository": { "type": "git", "url": "git+https://github.com/ziex-dev/ziex.git" diff --git a/pkg/@ziex/prepare.sh b/pkg/@ziex/prepare.sh new file mode 100755 index 00000000..e8ceb17d --- /dev/null +++ b/pkg/@ziex/prepare.sh @@ -0,0 +1,44 @@ +#!/bin/bash +set -euo pipefail + +# Downloads Zig compiler binaries for all platforms. +# Reads version from package.json. +# Places lib/ in the shared @zigc/lib package (identical across platforms). + +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" +ZIEX_VER=$(node -p "require('$SCRIPT_DIR/package.json').version") +LIB_COPIED=false + +# Update version in all workspace package.json files +echo "Updating package versions to $ZIEX_VER..." +for pkg in cli cli-darwin-arm64 cli-darwin-x64 cli-linux-x64 cli-linux-arm64 cli-win32-x64 cli-win32-arm64; do + pkg_json="$SCRIPT_DIR/$pkg/package.json" + [ -f "$pkg_json" ] || continue + node -e " + const fs = require('fs'); + const p = JSON.parse(fs.readFileSync('$pkg_json', 'utf8')); + p.version = '$ZIEX_VER'; + // Update any @ziex/cli-* refs in dependencies / optionalDependencies + for (const key of ['dependencies', 'optionalDependencies']) { + if (!p[key]) continue; + for (const dep of Object.keys(p[key])) { + if (dep.startsWith('@ziex/cli-')) p[key][dep] = '$ZIEX_VER'; + } + } + fs.writeFileSync('$pkg_json', JSON.stringify(p, null, 2) + '\n'); + " +done + +# --version: only sync package versions, skip downloads +if [[ "${1:-}" == "--version" ]]; then + echo "Done." + exit 0 +fi + +# Copy README.md to all packages +echo "Copying README.md to all packages..." +for dir in cli cli-darwin-arm64 cli-darwin-x64 cli-linux-x64 cli-linux-arm64 cli-win32-x64 cli-win32-arm64; do + cp "$SCRIPT_DIR/README.md" "$SCRIPT_DIR/$dir/README.md" +done + +echo "All packages ready!" diff --git a/pkg/ziex/npm/@zigc/verdaccio.yaml b/pkg/@ziex/verdaccio.yaml similarity index 100% rename from pkg/ziex/npm/@zigc/verdaccio.yaml rename to pkg/@ziex/verdaccio.yaml diff --git a/pkg/ziex/npm/@ziex/cli/package.json b/pkg/ziex/npm/@ziex/cli/package.json deleted file mode 100644 index be1d8094..00000000 --- a/pkg/ziex/npm/@ziex/cli/package.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "ziex", - "version": "0.1.0-dev.865", - "description": "ZX is a framework for building web applications with Zig.", - "main": "src/index.ts", - "type": "module", - "bin": { - "ziex": "bin/ziex", - "zx": "bin/ziex" - }, - "exports": { - ".": "./index.js", - "./react": "./react/index.js", - "./wasm": "./wasm/index.js", - "./wasm/init": "./wasm/init.js", - "./cloudflare": "./cloudflare/index.js", - "./aws-lambda": "./aws-lambda/index.js", - "./vercel": "./vercel/index.js" - }, - "homepage": "https://ziex.dev", - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "keywords": [ - "zx", - "zig", - "web framework", - "jsx", - "react", - "server components", - "client components", - "server actions", - "client actions", - "server actions" - ], - "author": "Nurul Huda (Apon) ", - "license": "MIT", - "scripts": { - "postinstall": "node install.cjs" - }, - "optionalDependencies": { - "@ziex/cli-darwin-arm64": "0.1.0-dev.865", - "@ziex/cli-darwin-x64": "0.1.0-dev.865", - "@ziex/cli-linux-x64": "0.1.0-dev.865", - "@ziex/cli-linux-arm64": "0.1.0-dev.865", - "@ziex/cli-win32-x64": "0.1.0-dev.865", - "@ziex/cli-win32-arm64": "0.1.0-dev.865" - } -} \ No newline at end of file diff --git a/pkg/ziex/npm/@zigc/README.md b/pkg/ziex/npm/@zigc/README.md deleted file mode 100644 index b71ecdf0..00000000 --- a/pkg/ziex/npm/@zigc/README.md +++ /dev/null @@ -1,34 +0,0 @@ -# @zigc/cli - -Zig compiler distributed via npm. Run Zig without installing it system-wide or in CI/CD where Zig is not available and/or only NPM is available. - -## Usage - -```bash -# Run directly -npx @zigc/cli version -bunx @zigc/cli version - -# Or install globally -npm install -g @zigc/cli -zig version -``` - -## How it works - -The `@zigc/cli` package resolves the correct native binary for your platform via optional dependencies: - -| Package | Platform | -|---------|----------| -| `@zigc/darwin-arm64` | macOS Apple Silicon | -| `@zigc/darwin-x64` | macOS Intel | -| `@zigc/linux-x64` | Linux x64 | -| `@zigc/linux-arm64` | Linux ARM64 | -| `@zigc/win32-x64` | Windows x64 | -| `@zigc/win32-arm64` | Windows ARM64 | - -The standard library is shipped separately in `@zigc/lib` (shared across all platforms). - -## License - -MIT diff --git a/pkg/ziex/npm/@zigc/cli/package.json b/pkg/ziex/npm/@zigc/cli/package.json deleted file mode 100644 index cdbd75c3..00000000 --- a/pkg/ziex/npm/@zigc/cli/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "@zigc/cli", - "version": "0.15.20", - "type": "module", - "description": "Zig compiler CLI via npm - run `bunx @zigc/cli` or `npx @zigc/cli`", - "bin": { - "zig": "bin/zig" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT", - "preferUnplugged": true, - "dependencies": { - "@zigc/lib": "0.15.20" - }, - "optionalDependencies": { - "@zigc/darwin-arm64": "0.15.20", - "@zigc/darwin-x64": "0.15.20", - "@zigc/linux-x64": "0.15.20", - "@zigc/linux-arm64": "0.15.20", - "@zigc/win32-x64": "0.15.20", - "@zigc/win32-arm64": "0.15.20" - } -} diff --git a/pkg/ziex/npm/@zigc/darwin-arm64/package.json b/pkg/ziex/npm/@zigc/darwin-arm64/package.json deleted file mode 100644 index 228459d4..00000000 --- a/pkg/ziex/npm/@zigc/darwin-arm64/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "@zigc/darwin-arm64", - "version": "0.15.20", - "description": "Zig compiler binary for macOS ARM64 (Apple Silicon)", - "os": [ - "darwin" - ], - "cpu": [ - "arm64" - ], - "bin": { - "zig": "bin/zig" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT", - "preferUnplugged": true -} diff --git a/pkg/ziex/npm/@zigc/darwin-x64/package.json b/pkg/ziex/npm/@zigc/darwin-x64/package.json deleted file mode 100644 index 0973c541..00000000 --- a/pkg/ziex/npm/@zigc/darwin-x64/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "@zigc/darwin-x64", - "version": "0.15.20", - "description": "Zig compiler binary for macOS x64 (Intel)", - "os": [ - "darwin" - ], - "cpu": [ - "x64" - ], - "bin": { - "zig": "bin/zig" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT", - "preferUnplugged": true -} diff --git a/pkg/ziex/npm/@zigc/index.json b/pkg/ziex/npm/@zigc/index.json deleted file mode 100644 index f6082c5d..00000000 --- a/pkg/ziex/npm/@zigc/index.json +++ /dev/null @@ -1,1583 +0,0 @@ -{ - "master": { - "version": "0.16.0-dev.2973+06b85a4fd", - "date": "2026-03-22", - "docs": "https://ziglang.org/documentation/master/", - "stdDocs": "https://ziglang.org/documentation/master/std/", - "src": { - "tarball": "https://ziglang.org/builds/zig-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "7e5dd0709cc0bf95c549bdb27a6f73d7c82e818dc41726c371334cae14da077f", - "size": "22451052" - }, - "bootstrap": { - "tarball": "https://ziglang.org/builds/zig-bootstrap-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "110883146e3b808d6e2526fb1c0a45dda9bb4785fd8e02fa3566ff7e30bcb064", - "size": "55210448" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/builds/zig-x86_64-macos-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "5a50aa1f1d6d55c862c8ccbbe232bef3ed081b09a35722d1eb208988e4d76b69", - "size": "57592184" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/builds/zig-aarch64-macos-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "dabaabc296b91401834584ef63ed6b3d69b1c1b2cfaf455b94b615606582dab3", - "size": "52383168" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/builds/zig-x86_64-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "bac2fda27221f81a81467b6b385ffc3dc5334e6aab9de506ceed10040185c2fa", - "size": "55467684" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/builds/zig-aarch64-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "460ec5e7e0545e3900ad51297c5d94f5810ae08a31847c799e1783749606c936", - "size": "51181632" - }, - "arm-linux": { - "tarball": "https://ziglang.org/builds/zig-arm-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "caa3383972a4d35db966c93432da8320eba5a7f3fe3b4f6d04b8c483f4bb748c", - "size": "52112708" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/builds/zig-riscv64-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "c2532a31f905991d9e143bb867bf5a5ebbac869aa0b4f4dc35ddef7dcf42199a", - "size": "55320392" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/builds/zig-powerpc64le-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "bbd45b330bdfe9018d84bce78d36646e4f609164bad500322fbc1ef3e6d5e482", - "size": "55235960" - }, - "x86-linux": { - "tarball": "https://ziglang.org/builds/zig-x86-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "167d128c69be21bc6702bf84fa64fffb308afbb39a7521db258a7360ab10dd7e", - "size": "58147420" - }, - "loongarch64-linux": { - "tarball": "https://ziglang.org/builds/zig-loongarch64-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "40ae3f9bd164940e061db4e69ba47d873adbe4ca9e6eddbeb883f5db24bc7aa0", - "size": "52511116" - }, - "s390x-linux": { - "tarball": "https://ziglang.org/builds/zig-s390x-linux-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "65eb3449539d4627b7aaf91abefc5217df3b9cf28fffea33bd3009b75ea41619", - "size": "54942792" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/builds/zig-x86_64-windows-0.16.0-dev.2973+06b85a4fd.zip", - "shasum": "de40435b7008fd29eaf307cb67a4f0fcc3f5ebbaef488b8957210d45db9beed4", - "size": "98037437" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/builds/zig-aarch64-windows-0.16.0-dev.2973+06b85a4fd.zip", - "shasum": "2b2294a28e2d1901accb4d400edd4c2d5bf91f5314bca765b90c7e70c7451b21", - "size": "93943525" - }, - "x86-windows": { - "tarball": "https://ziglang.org/builds/zig-x86-windows-0.16.0-dev.2973+06b85a4fd.zip", - "shasum": "4e43a1622684bc66d30914f94ecddfb14f412a4986c964ac093877b0ec6805c2", - "size": "99816356" - }, - "aarch64-freebsd": { - "tarball": "https://ziglang.org/builds/zig-aarch64-freebsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "c123725b2678d1dd0a1b1512f6797b3e7d8274a6161f048e9e14ed6ac6299c11", - "size": "51119576" - }, - "arm-freebsd": { - "tarball": "https://ziglang.org/builds/zig-arm-freebsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "52cb17a231687f3c752adbdd7dbaa96fb3bc57fcdaf2d04b82b8aa2b75c6ff26", - "size": "52717132" - }, - "powerpc64le-freebsd": { - "tarball": "https://ziglang.org/builds/zig-powerpc64le-freebsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "7487395660ccc25b2a0f7176952f14be8d95d21815d7898363588ee3f6c79617", - "size": "55255244" - }, - "riscv64-freebsd": { - "tarball": "https://ziglang.org/builds/zig-riscv64-freebsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "f924781840de36a735708524cd23c40c8ca228313cf756316ff763635df1e5ae", - "size": "55432064" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/builds/zig-x86_64-freebsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "371387a9122dfede5e026a49af2faa376cb436906383eeb9aac6fe3c21606125", - "size": "55566080" - }, - "aarch64-netbsd": { - "tarball": "https://ziglang.org/builds/zig-aarch64-netbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "fb3d5b7809c40c542cbc0a0b1bb2ecc4877762360b12688278c948cbb2d27a47", - "size": "51072348" - }, - "arm-netbsd": { - "tarball": "https://ziglang.org/builds/zig-arm-netbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "ee77f7a586b8d48153660c7a6abbfaeab21f52d8af2e16b73b740470cd1e2c55", - "size": "53754676" - }, - "x86-netbsd": { - "tarball": "https://ziglang.org/builds/zig-x86-netbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "c28e72403c9a85825e85465f85d19bd5d5cd258606184413f56a7bb3751b14b5", - "size": "58742876" - }, - "x86_64-netbsd": { - "tarball": "https://ziglang.org/builds/zig-x86_64-netbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "8f5d139e76e2f1de14af9b09cab44a4475cf29a1e5cbdf514dd9c987054921be", - "size": "55508704" - }, - "aarch64-openbsd": { - "tarball": "https://ziglang.org/builds/zig-aarch64-openbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "371a84fdc5de7b428eca59ccef1271ba61b92e07dc7e08f3273aa91c59d51839", - "size": "51543648" - }, - "arm-openbsd": { - "tarball": "https://ziglang.org/builds/zig-arm-openbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "3d25649ef1c531d5b22599f77f2433a75fef425ff1ecff394974b8dbaaec253b", - "size": "52311212" - }, - "riscv64-openbsd": { - "tarball": "https://ziglang.org/builds/zig-riscv64-openbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "587de2da688881bca91cfe9ad8928b5692320033fb5dbe45aec9526da4a61312", - "size": "55747828" - }, - "x86_64-openbsd": { - "tarball": "https://ziglang.org/builds/zig-x86_64-openbsd-0.16.0-dev.2973+06b85a4fd.tar.xz", - "shasum": "9684cefbeecf6648672c3a4a334e16cc534e67e3f1c28421fd2ee2e8e68e9ca3", - "size": "56939120" - } - }, - "0.15.2": { - "version": "0.15.2", - "date": "2025-10-11", - "docs": "https://ziglang.org/documentation/0.15.2/", - "stdDocs": "https://ziglang.org/documentation/0.15.2/std/", - "src": { - "tarball": "https://ziglang.org/download/0.15.2/zig-0.15.2.tar.xz", - "shasum": "d9b30c7aa983fcff5eed2084d54ae83eaafe7ff3a84d8fb754d854165a6e521c", - "size": "21366268" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.15.2/zig-bootstrap-0.15.2.tar.xz", - "shasum": "a6845459501df3c3264ebc587b02a7094ad14f4f3f7287c48f04457e784d0d85", - "size": "52718988" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86_64-macos-0.15.2.tar.xz", - "shasum": "375b6909fc1495d16fc2c7db9538f707456bfc3373b14ee83fdd3e22b3d43f7f", - "size": "55800460" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.15.2/zig-aarch64-macos-0.15.2.tar.xz", - "shasum": "3cc2bab367e185cdfb27501c4b30b1b0653c28d9f73df8dc91488e66ece5fa6b", - "size": "50635984" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86_64-linux-0.15.2.tar.xz", - "shasum": "02aa270f183da276e5b5920b1dac44a63f1a49e55050ebde3aecc9eb82f93239", - "size": "53733924" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-aarch64-linux-0.15.2.tar.xz", - "shasum": "958ed7d1e00d0ea76590d27666efbf7a932281b3d7ba0c6b01b0ff26498f667f", - "size": "49471996" - }, - "arm-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-arm-linux-0.15.2.tar.xz", - "shasum": "7d8401495065dae45d6249c68d5faf10508f8203c86362ccb698aeaafc66b7cd", - "size": "50454216" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-riscv64-linux-0.15.2.tar.xz", - "shasum": "493512bdca485be3c6a9b0f69dcb4cbe4587f3af8e1be282fdd827108ba39930", - "size": "53613656" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-powerpc64le-linux-0.15.2.tar.xz", - "shasum": "e182c5f8d30fc7f97d17d2ffef1488826aa3afaa51e5f0dbe14c597a98b45778", - "size": "53570632" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86-linux-0.15.2.tar.xz", - "shasum": "4c6e23f39daa305e274197bfdff0d56ffd1750fc1de226ae10505c0eff52d7a5", - "size": "56334032" - }, - "loongarch64-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-loongarch64-linux-0.15.2.tar.xz", - "shasum": "95d6a03e0415dbe30ae9c00d58b5446fd681ebf3d4044a8b707e1784c8074a61", - "size": "50800332" - }, - "s390x-linux": { - "tarball": "https://ziglang.org/download/0.15.2/zig-s390x-linux-0.15.2.tar.xz", - "shasum": "cd4b295f43b1b7ca3d603368caea82dbd00fce6691affb7527e607c0b6eafe8e", - "size": "53486436" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86_64-windows-0.15.2.zip", - "shasum": "3a0ed1e8799a2f8ce2a6e6290a9ff22e6906f8227865911fb7ddedc3cc14cb0c", - "size": "92614574" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.15.2/zig-aarch64-windows-0.15.2.zip", - "shasum": "b926465f8872bf983422257cd9ec248bb2b270996fbe8d57872cca13b56fc370", - "size": "88464585" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86-windows-0.15.2.zip", - "shasum": "7a6dfc00f4cc09ec46d3e10eb06f42538e92b6285e34debea7462edaf371da98", - "size": "94516930" - }, - "aarch64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-aarch64-freebsd-0.15.2.tar.xz", - "shasum": "c62efd319f86663eb7747709dfca259205edba8eaee98efc96a51ce40a9437de", - "size": "49363332" - }, - "arm-freebsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-arm-freebsd-0.15.2.tar.xz", - "shasum": "1d5d06428b2d4d31cf4e99008602f2096a9c652dd1025820a4aa66326fbf3dc4", - "size": "50900824" - }, - "powerpc64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-powerpc64-freebsd-0.15.2.tar.xz", - "shasum": "2bdb5a38069e667936d3378dfa332d67c21bb454cb17bea3c3b03faaa02a74af", - "size": "52099240" - }, - "powerpc64le-freebsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-powerpc64le-freebsd-0.15.2.tar.xz", - "shasum": "940894eb954c2077d0643f4deba8113239436fd0dcbc88160163b1b23fe3f035", - "size": "53459116" - }, - "riscv64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-riscv64-freebsd-0.15.2.tar.xz", - "shasum": "9aecdcf32fb63944c11389c10993aecd5e443a82d456693cc5ad230b5fe584ad", - "size": "53658752" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86_64-freebsd-0.15.2.tar.xz", - "shasum": "5509ff57cd3f219165caed0da10221739af82742b9edfcda3f7bfaf4da7212dd", - "size": "53776208" - }, - "aarch64-netbsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-aarch64-netbsd-0.15.2.tar.xz", - "shasum": "357c1e62df6581ec1726546f9a827973233cb31ac371d2b0e92456b306a0c6c0", - "size": "49365256" - }, - "arm-netbsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-arm-netbsd-0.15.2.tar.xz", - "shasum": "1c43871791d49dbabd224da307b995076e493e34c36734cb21c4f6cbc208f8c3", - "size": "52021696" - }, - "x86-netbsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86-netbsd-0.15.2.tar.xz", - "shasum": "7f18fc4720426a6ca77bbfb7b970c31a61c37ce4a867b53830762958e921cdde", - "size": "56893368" - }, - "x86_64-netbsd": { - "tarball": "https://ziglang.org/download/0.15.2/zig-x86_64-netbsd-0.15.2.tar.xz", - "shasum": "11a3b9f4b66bece34a79c0e98e91136baf0ff9795ddf60e442ca6c8ad73b9204", - "size": "53778132" - } - }, - "0.15.1": { - "date": "2025-08-19", - "docs": "https://ziglang.org/documentation/0.15.1/", - "stdDocs": "https://ziglang.org/documentation/0.15.1/std/", - "notes": "https://ziglang.org/download/0.15.1/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.15.1/zig-0.15.1.tar.xz", - "shasum": "816c0303ab313f59766ce2097658c9fff7fafd1504f61f80f9507cd11652865f", - "size": "21359884" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.15.1/zig-bootstrap-0.15.1.tar.xz", - "shasum": "4c0cfbcf12da144955761ca43f89e3c74956bce978694fc1d0a63555f5c0a199", - "size": "52711548" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86_64-macos-0.15.1.tar.xz", - "shasum": "9919392e0287cccc106dfbcbb46c7c1c3fa05d919567bb58d7eb16bca4116184", - "size": "55791880" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.15.1/zig-aarch64-macos-0.15.1.tar.xz", - "shasum": "c4bd624d901c1268f2deb9d8eb2d86a2f8b97bafa3f118025344242da2c54d7b", - "size": "50644996" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86_64-linux-0.15.1.tar.xz", - "shasum": "c61c5da6edeea14ca51ecd5e4520c6f4189ef5250383db33d01848293bfafe05", - "size": "53734456" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-aarch64-linux-0.15.1.tar.xz", - "shasum": "bb4a8d2ad735e7fba764c497ddf4243cb129fece4148da3222a7046d3f1f19fe", - "size": "49493872" - }, - "arm-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-arm-linux-0.15.1.tar.xz", - "shasum": "3f4bf3b06b67d14e3f38be30798488c1abe3cf5b33de570cd0e87bbf09b978ad", - "size": "50477464" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-riscv64-linux-0.15.1.tar.xz", - "shasum": "7ca7a3e621436fb31d66a253132fc39574a13d2a1b4d8458af4f2e7c6e4374fe", - "size": "53597792" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-powerpc64le-linux-0.15.1.tar.xz", - "shasum": "339e2106496be70b614e32d444298216e676c36d08f5cd7bee3dd1dbd4567fd7", - "size": "53566944" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86-linux-0.15.1.tar.xz", - "shasum": "dff166f25fdd06e8341d831a71211b5ba7411463a6b264bdefa8868438690b6a", - "size": "56311228" - }, - "loongarch64-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-loongarch64-linux-0.15.1.tar.xz", - "shasum": "0af18a012f3c4cffbef29ab5f42021484d92517f921a1380faacc89c50c1f89d", - "size": "50794376" - }, - "s390x-linux": { - "tarball": "https://ziglang.org/download/0.15.1/zig-s390x-linux-0.15.1.tar.xz", - "shasum": "bcd13e5c88cf2d0da7100a48572195560069a94402c9bec3b316398204aa27e2", - "size": "53508068" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86_64-windows-0.15.1.zip", - "shasum": "91e69e887ca8c943ce9a515df3af013d95a66a190a3df3f89221277ebad29e34", - "size": "92612958" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.15.1/zig-aarch64-windows-0.15.1.zip", - "shasum": "1f1bf16228b0ffcc882b713dc5e11a6db4219cb30997e13c72e8e723c2104ec6", - "size": "88458549" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86-windows-0.15.1.zip", - "shasum": "fb1c07cffbb43615d3158ab8b8f5db5da1d48875eca99e1d7a8a0064ff63fc5b", - "size": "94516052" - }, - "aarch64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-aarch64-freebsd-0.15.1.tar.xz", - "shasum": "4d9d25c775828d49ea037b2284310c295d951793da8ebe94827a54fed4cca3ce", - "size": "49358464" - }, - "arm-freebsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-arm-freebsd-0.15.1.tar.xz", - "shasum": "9707f3a5f7e1a3d99c40db9a74de1acc61016a197ad289c2ad964f93cb213a18", - "size": "50904124" - }, - "powerpc64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-powerpc64-freebsd-0.15.1.tar.xz", - "shasum": "79448884372db04e62f77a46b92245fce805063e69534729537f75cb4681e7e3", - "size": "52099020" - }, - "powerpc64le-freebsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-powerpc64le-freebsd-0.15.1.tar.xz", - "shasum": "f18ee12ba9c98a20b8d2ad0410c679e7aa5591bc7917f169fd6b377833d2c7ad", - "size": "53480976" - }, - "riscv64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-riscv64-freebsd-0.15.1.tar.xz", - "shasum": "ee9f864a6fd8b57c1f4fdbb11daa06578746a6f8253afe3f5ddb5a76f2eddd2d", - "size": "53677800" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86_64-freebsd-0.15.1.tar.xz", - "shasum": "9714f8ac3d3dc908b1599837c6167f857c1efaa930f0cfa840699458de7c3cd0", - "size": "53782112" - }, - "aarch64-netbsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-aarch64-netbsd-0.15.1.tar.xz", - "shasum": "b2a528399777583b85b89c54ccd45488af7709d6dd29a27323ec2a229db40910", - "size": "49368000" - }, - "arm-netbsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-arm-netbsd-0.15.1.tar.xz", - "shasum": "93dc70109cbf5d2e022d20dfb56211978c4ea3c0b1e67aaabff947d8d1583aab", - "size": "52028184" - }, - "x86-netbsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86-netbsd-0.15.1.tar.xz", - "shasum": "a91b26051822ff17f3143f859b87dce5b4a13e90928bd6daa6f07a895d3410f0", - "size": "56881864" - }, - "x86_64-netbsd": { - "tarball": "https://ziglang.org/download/0.15.1/zig-x86_64-netbsd-0.15.1.tar.xz", - "shasum": "6d7ba6eca5b4434351ebdb971b7303c9934514f9bb8481852251dbd5b52b03d6", - "size": "53794836" - } - }, - "0.14.1": { - "date": "2025-05-21", - "docs": "https://ziglang.org/documentation/0.14.1/", - "stdDocs": "https://ziglang.org/documentation/0.14.1/std/", - "src": { - "tarball": "https://ziglang.org/download/0.14.1/zig-0.14.1.tar.xz", - "shasum": "237f8abcc8c3fd68c70c66cdbf63dce4fb5ad4a2e6225ac925e3d5b4c388f203", - "size": "17787696" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.14.1/zig-bootstrap-0.14.1.tar.xz", - "shasum": "89b2fce50bfbb1eee29c382193d22c6eb0c7da3a96b5ba6d05e0af2945b3ca3d", - "size": "48041028" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.14.1/zig-x86_64-macos-0.14.1.tar.xz", - "shasum": "b0f8bdfb9035783db58dd6c19d7dea89892acc3814421853e5752fe4573e5f43", - "size": "51044512" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.14.1/zig-aarch64-macos-0.14.1.tar.xz", - "shasum": "39f3dc5e79c22088ce878edc821dedb4ca5a1cd9f5ef915e9b3cc3053e8faefa", - "size": "45903552" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-x86_64-linux-0.14.1.tar.xz", - "shasum": "24aeeec8af16c381934a6cd7d95c807a8cb2cf7df9fa40d359aa884195c4716c", - "size": "49086504" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-aarch64-linux-0.14.1.tar.xz", - "shasum": "f7a654acc967864f7a050ddacfaa778c7504a0eca8d2b678839c21eea47c992b", - "size": "44954692" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-armv7a-linux-0.14.1.tar.xz", - "shasum": "1b34d9ecfaeb3b360e86c0bc233e1a8a2bbed2d40f2d4f20c12bde2128714324", - "size": "46137456" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-riscv64-linux-0.14.1.tar.xz", - "shasum": "005f214f74dbafb7b4d8bd305f4e9d25048f711d9ec6fa7b3d4fca177e11b882", - "size": "48094380" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-powerpc64le-linux-0.14.1.tar.xz", - "shasum": "15523e748efd9224ae164482e5cc1f8c11b035246b9749fb5b00758484f384a1", - "size": "48720956" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-x86-linux-0.14.1.tar.xz", - "shasum": "4bce6347fa112247443cb0952c19e560d1f90b910506cf895fd07a7b8d1c4a76", - "size": "51643520" - }, - "loongarch64-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-loongarch64-linux-0.14.1.tar.xz", - "shasum": "fdc344789be6becbe220bf5ad035156e653cc148f4da270188cbac87729f17e0", - "size": "45825404" - }, - "s390x-linux": { - "tarball": "https://ziglang.org/download/0.14.1/zig-s390x-linux-0.14.1.tar.xz", - "shasum": "8e1bb63532ba22725f0a4a45e5c2920a8af508d8ca81e6007c330eec2b7033a6", - "size": "55602032" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.14.1/zig-x86_64-windows-0.14.1.zip", - "shasum": "554f5378228923ffd558eac35e21af020c73789d87afeabf4bfd16f2e6feed2c", - "size": "82229343" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.14.1/zig-aarch64-windows-0.14.1.zip", - "shasum": "b5aac0ccc40dd91e8311b1f257717d8e3903b5fefb8f659de6d65a840ad1d0e7", - "size": "78125379" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.14.1/zig-x86-windows-0.14.1.zip", - "shasum": "3ee730c2a5523570dc4dc1b724f3e4f30174ebc1fa109ca472a719586a473b18", - "size": "83983932" - } - }, - "0.14.0": { - "date": "2025-03-05", - "docs": "https://ziglang.org/documentation/0.14.0/", - "stdDocs": "https://ziglang.org/documentation/0.14.0/std/", - "notes": "https://ziglang.org/download/0.14.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.14.0/zig-0.14.0.tar.xz", - "shasum": "c76638c03eb204c4432ae092f6fa07c208567e110fbd4d862d131a7332584046", - "size": "17772188" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.14.0/zig-bootstrap-0.14.0.tar.xz", - "shasum": "bf3fcb22be0b83f4791748adb567d3304779d66d7bf9b1bd557ef6c2e0232807", - "size": "48029040" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.14.0/zig-macos-x86_64-0.14.0.tar.xz", - "shasum": "685816166f21f0b8d6fc7aa6a36e91396dcd82ca6556dfbe3e329deffc01fec3", - "size": "51039964" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.14.0/zig-macos-aarch64-0.14.0.tar.xz", - "shasum": "b71e4b7c4b4be9953657877f7f9e6f7ee89114c716da7c070f4a238220e95d7e", - "size": "45902412" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.14.0/zig-linux-x86_64-0.14.0.tar.xz", - "shasum": "473ec26806133cf4d1918caf1a410f8403a13d979726a9045b421b685031a982", - "size": "49091960" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.14.0/zig-linux-aarch64-0.14.0.tar.xz", - "shasum": "ab64e3ea277f6fc5f3d723dcd95d9ce1ab282c8ed0f431b4de880d30df891e4f", - "size": "44922728" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.14.0/zig-linux-armv7a-0.14.0.tar.xz", - "shasum": "a67dbfa9bdf769228ec994f2098698c619f930883ca5ef638f50eee2d7788d10", - "size": "46112980" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.14.0/zig-linux-riscv64-0.14.0.tar.xz", - "shasum": "a2b14d3de326d3fd095548ef38bf5a67b15dadd62fbcc90836d63cc4355f8ef7", - "size": "48069188" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.14.0/zig-linux-powerpc64le-0.14.0.tar.xz", - "shasum": "3eabd60876ebc2748de8eb57b4b8cfa78861ba9bf7c6dd83f4e3e1d271d7c45e", - "size": "48707620" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.14.0/zig-linux-x86-0.14.0.tar.xz", - "shasum": "55d1ba21de5109686ffa675b9cc1dd66930093c202995a637ce3e397816e4c08", - "size": "51621460" - }, - "loongarch64-linux": { - "tarball": "https://ziglang.org/download/0.14.0/zig-linux-loongarch64-0.14.0.tar.xz", - "shasum": "31a2f07df55f8f528b92d540db9aae6c0b38643c34dc1ac33a0111d855e996ae", - "size": "45821860" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.14.0/zig-windows-x86_64-0.14.0.zip", - "shasum": "f53e5f9011ba20bbc3e0e6d0a9441b31eb227a97bac0e7d24172f1b8b27b4371", - "size": "82219809" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.14.0/zig-windows-aarch64-0.14.0.zip", - "shasum": "03e984383ebb8f85293557cfa9f48ee8698e7c400239570c9ff1aef3bffaf046", - "size": "78113283" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.14.0/zig-windows-x86-0.14.0.zip", - "shasum": "1a867d808cf4fa9184358395d94441390b6b24ee8d00d356ca11ea7cbfd3a4ec", - "size": "83970029" - } - }, - "0.13.0": { - "date": "2024-06-07", - "docs": "https://ziglang.org/documentation/0.13.0/", - "stdDocs": "https://ziglang.org/documentation/0.13.0/std/", - "notes": "https://ziglang.org/download/0.13.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.13.0/zig-0.13.0.tar.xz", - "shasum": "06c73596beeccb71cc073805bdb9c0e05764128f16478fa53bf17dfabc1d4318", - "size": "17220728" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.13.0/zig-bootstrap-0.13.0.tar.xz", - "shasum": "cd446c084b5da7bc42e8ad9b4e1c910a957f2bf3f82bcc02888102cd0827c139", - "size": "46440356" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.13.0/zig-freebsd-x86_64-0.13.0.tar.xz", - "shasum": "adc1ffc9be56533b2f1c7191f9e435ad55db00414ff2829d951ef63d95aaad8c", - "size": "47177744" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.13.0/zig-macos-x86_64-0.13.0.tar.xz", - "shasum": "8b06ed1091b2269b700b3b07f8e3be3b833000841bae5aa6a09b1a8b4773effd", - "size": "48857012" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.13.0/zig-macos-aarch64-0.13.0.tar.xz", - "shasum": "46fae219656545dfaf4dce12fb4e8685cec5b51d721beee9389ab4194d43394c", - "size": "44892040" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz", - "shasum": "d45312e61ebcc48032b77bc4cf7fd6915c11fa16e4aad116b66c9468211230ea", - "size": "47082308" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.13.0/zig-linux-aarch64-0.13.0.tar.xz", - "shasum": "041ac42323837eb5624068acd8b00cd5777dac4cf91179e8dad7a7e90dd0c556", - "size": "43090688" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.13.0/zig-linux-armv7a-0.13.0.tar.xz", - "shasum": "4b0550239c2cd884cc03ddeb2b9934708f4b073ad59a96fccbfe09f7e4f54233", - "size": "43998916" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.13.0/zig-linux-riscv64-0.13.0.tar.xz", - "shasum": "9f7f3c685894ff80f43eaf3cad1598f4844ac46f4308374237c7f912f7907bb3", - "size": "45540956" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.13.0/zig-linux-powerpc64le-0.13.0.tar.xz", - "shasum": "6a467622448e830e8f85d20cabed151498af2b0a62f87b8c083b2fe127e60417", - "size": "46574596" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.13.0/zig-linux-x86-0.13.0.tar.xz", - "shasum": "876159cc1e15efb571e61843b39a2327f8925951d48b9a7a03048c36f72180f7", - "size": "52062336" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.13.0/zig-windows-x86_64-0.13.0.zip", - "shasum": "d859994725ef9402381e557c60bb57497215682e355204d754ee3df75ee3c158", - "size": "79163968" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.13.0/zig-windows-aarch64-0.13.0.zip", - "shasum": "95ff88427af7ba2b4f312f45d2377ce7a033e5e3c620c8caaa396a9aba20efda", - "size": "75119033" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.13.0/zig-windows-x86-0.13.0.zip", - "shasum": "eb3d533c3cf868bff7e74455dc005d18fd836c42e50b27106b31e9fec6dffc4a", - "size": "83274739" - } - }, - "0.12.1": { - "date": "2024-06-08", - "docs": "https://ziglang.org/documentation/0.12.1/", - "stdDocs": "https://ziglang.org/documentation/0.12.1/std/", - "src": { - "tarball": "https://ziglang.org/download/0.12.1/zig-0.12.1.tar.xz", - "shasum": "cca0bf5686fe1a15405bd535661811fac7663f81664d2204ea4590ce49a6e9ba", - "size": "17110932" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.12.1/zig-bootstrap-0.12.1.tar.xz", - "shasum": "e533e2cb6ef60edda0ae3f2ca5c6504557db6e985e3c3a80159beb32279ed341", - "size": "45542004" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.12.1/zig-freebsd-x86_64-0.12.1.tar.xz", - "shasum": "30eaa28fa7bc21d01f88528d75ae4b392ae4970406675d5ac712a4937a605123", - "size": "45590080" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.12.1/zig-macos-x86_64-0.12.1.tar.xz", - "shasum": "68f309c6e431d56eb42648d7fe86e8028a23464d401a467831e27c26f1a8d9c9", - "size": "47202232" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.12.1/zig-macos-aarch64-0.12.1.tar.xz", - "shasum": "6587860dbbc070e1ee069e1a3d18ced83b7ba7a80bf67b2c57caf7c9ce5208b1", - "size": "43451512" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.12.1/zig-linux-x86_64-0.12.1.tar.xz", - "shasum": "8860fc9725c2d9297a63008f853e9b11e3c5a2441217f99c1e3104cc6fa4a443", - "size": "45512024" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.12.1/zig-linux-aarch64-0.12.1.tar.xz", - "shasum": "27d4fef393e8d8b5f3b1d19f4dd43bfdb469b4ed17bbc4c2283c1b1fe650ef7f", - "size": "41867324" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.12.1/zig-linux-armv7a-0.12.1.tar.xz", - "shasum": "27493c922fd1454137ed6cbe6b6bec00352838fcd32e6e74f4f9187011816157", - "size": "42665508" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.12.1/zig-linux-riscv64-0.12.1.tar.xz", - "shasum": "463511a863acc16911cff6801de97623e6de296aab7b15dcda5f6fd078b400b5", - "size": "43932908" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.12.1/zig-linux-powerpc64le-0.12.1.tar.xz", - "shasum": "462d6f10350f3c5d6fc4c9d6cfdede93d69d0103af026889a15f65c5de791d39", - "size": "45227716" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.12.1/zig-linux-x86-0.12.1.tar.xz", - "shasum": "c36ac019ca0fc3167e50d17e2affd3d072a06c519761737d0639adfdf2dcfddd", - "size": "50555428" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.12.1/zig-windows-x86_64-0.12.1.zip", - "shasum": "52459b147c2de4d7c28f6b1a4b3d571c114e96836bf8e31c953a7d2f5e94251c", - "size": "76470574" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.12.1/zig-windows-aarch64-0.12.1.zip", - "shasum": "e1286114a11be4695a6ad5cf0ba6a0e5f489bb3b029a5237de93598133f0c13a", - "size": "72998386" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.12.1/zig-windows-x86-0.12.1.zip", - "shasum": "4f0cc9258527e7b8bcf742772b3069122086a5cd857b38a1c08002462ac81f80", - "size": "80979711" - } - }, - "0.12.0": { - "date": "2024-04-20", - "docs": "https://ziglang.org/documentation/0.12.0/", - "stdDocs": "https://ziglang.org/documentation/0.12.0/std/", - "notes": "https://ziglang.org/download/0.12.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.12.0/zig-0.12.0.tar.xz", - "shasum": "a6744ef84b6716f976dad923075b2f54dc4f785f200ae6c8ea07997bd9d9bd9a", - "size": "17099152" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.12.0/zig-bootstrap-0.12.0.tar.xz", - "shasum": "3efc643d56421fa68072af94d5512cb71c61acf1c32512f77c0b4590bff63187", - "size": "45527312" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.12.0/zig-freebsd-x86_64-0.12.0.tar.xz", - "shasum": "bd49957d1157850b337ee1cf3c00af83585cff98e1ebc3c524a267e7422a2d7b", - "size": "45578364" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.12.0/zig-macos-x86_64-0.12.0.tar.xz", - "shasum": "4d411bf413e7667821324da248e8589278180dbc197f4f282b7dbb599a689311", - "size": "47185720" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.12.0/zig-macos-aarch64-0.12.0.tar.xz", - "shasum": "294e224c14fd0822cfb15a35cf39aa14bd9967867999bf8bdfe3db7ddec2a27f", - "size": "43447724" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.12.0/zig-linux-x86_64-0.12.0.tar.xz", - "shasum": "c7ae866b8a76a568e2d5cfd31fe89cdb629bdd161fdd5018b29a4a0a17045cad", - "size": "45480516" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.12.0/zig-linux-aarch64-0.12.0.tar.xz", - "shasum": "754f1029484079b7e0ca3b913a0a2f2a6afd5a28990cb224fe8845e72f09de63", - "size": "41849060" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.12.0/zig-linux-armv7a-0.12.0.tar.xz", - "shasum": "b48221f4c64416d257f0f9f77d8727dccf7de92aeabe59744ee6e70d650a97bc", - "size": "42638808" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.12.0/zig-linux-riscv64-0.12.0.tar.xz", - "shasum": "bb2d1a78b01595a9c00ffd2e12ab46e32f8b6798f76aec643ff78e5b4f5c5afd", - "size": "43917444" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.12.0/zig-linux-powerpc64le-0.12.0.tar.xz", - "shasum": "9218beecfb9250e9eff863f58f987dca7077e3258dd263c40269086127f9679b", - "size": "45216736" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.12.0/zig-linux-x86-0.12.0.tar.xz", - "shasum": "fb752fceb88749a80d625a6efdb23bea8208962b5150d6d14c92d20efda629a5", - "size": "50498940" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.12.0/zig-windows-x86_64-0.12.0.zip", - "shasum": "2199eb4c2000ddb1fba85ba78f1fcf9c1fb8b3e57658f6a627a8e513131893f5", - "size": "76442958" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.12.0/zig-windows-aarch64-0.12.0.zip", - "shasum": "04c6b92689241ca7a8a59b5f12d2ca2820c09d5043c3c4808b7e93e41c7bf97b", - "size": "72976876" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.12.0/zig-windows-x86-0.12.0.zip", - "shasum": "497dc9fd415cadf948872f137d6cc0870507488f79db9547b8f2adb73cda9981", - "size": "80950440" - } - }, - "0.11.0": { - "date": "2023-08-04", - "docs": "https://ziglang.org/documentation/0.11.0/", - "stdDocs": "https://ziglang.org/documentation/0.11.0/std/", - "notes": "https://ziglang.org/download/0.11.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.11.0/zig-0.11.0.tar.xz", - "shasum": "72014e700e50c0d3528cef3adf80b76b26ab27730133e8202716a187a799e951", - "size": "15275316" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.11.0/zig-bootstrap-0.11.0.tar.xz", - "shasum": "38dd9e17433c7ce5687c48fa0a757462cbfcbe75d9d5087d14ebbe00efd21fdc", - "size": "43227592" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.11.0/zig-freebsd-x86_64-0.11.0.tar.xz", - "shasum": "ea430327f9178377b79264a1d492868dcff056cd76d43a6fb00719203749e958", - "size": "46432140" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.11.0/zig-macos-x86_64-0.11.0.tar.xz", - "shasum": "1c1c6b9a906b42baae73656e24e108fd8444bb50b6e8fd03e9e7a3f8b5f05686", - "size": "47189164" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.11.0/zig-macos-aarch64-0.11.0.tar.xz", - "shasum": "c6ebf927bb13a707d74267474a9f553274e64906fd21bf1c75a20bde8cadf7b2", - "size": "43855096" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz", - "shasum": "2d00e789fec4f71790a6e7bf83ff91d564943c5ee843c5fd966efc474b423047", - "size": "44961892" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.11.0/zig-linux-aarch64-0.11.0.tar.xz", - "shasum": "956eb095d8ba44ac6ebd27f7c9956e47d92937c103bf754745d0a39cdaa5d4c6", - "size": "41492432" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.11.0/zig-linux-armv7a-0.11.0.tar.xz", - "shasum": "aebe8bbeca39f13f9b7304465f9aee01ab005d243836bd40f4ec808093dccc9b", - "size": "42240664" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.11.0/zig-linux-riscv64-0.11.0.tar.xz", - "shasum": "24a478937eddb507e96d60bd4da00de9092b3f0920190eb45c4c99c946b00ed5", - "size": "43532324" - }, - "powerpc64le-linux": { - "tarball": "https://ziglang.org/download/0.11.0/zig-linux-powerpc64le-0.11.0.tar.xz", - "shasum": "75260e87325e820a278cf9e74f130c7b3d84c0b5197afb2e3c85eff3fcedd48d", - "size": "44656184" - }, - "powerpc-linux": { - "tarball": "https://ziglang.org/download/0.11.0/zig-linux-powerpc-0.11.0.tar.xz", - "shasum": "70a5f9668a66fb2a91a7c3488b15bcb568e1f9f44b95cd10075c138ad8c42864", - "size": "44539972" - }, - "x86-linux": { - "tarball": "https://ziglang.org/download/0.11.0/zig-linux-x86-0.11.0.tar.xz", - "shasum": "7b0dc3e0e070ae0e0d2240b1892af6a1f9faac3516cae24e57f7a0e7b04662a8", - "size": "49824456" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.11.0/zig-windows-x86_64-0.11.0.zip", - "shasum": "142caa3b804d86b4752556c9b6b039b7517a08afa3af842645c7e2dcd125f652", - "size": "77216743" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.11.0/zig-windows-aarch64-0.11.0.zip", - "shasum": "5d4bd13db5ecb0ddc749231e00f125c1d31087d708e9ff9b45c4f4e13e48c661", - "size": "73883137" - }, - "x86-windows": { - "tarball": "https://ziglang.org/download/0.11.0/zig-windows-x86-0.11.0.zip", - "shasum": "e72b362897f28c671633e650aa05289f2e62b154efcca977094456c8dac3aefa", - "size": "81576961" - } - }, - "0.10.1": { - "date": "2023-01-19", - "docs": "https://ziglang.org/documentation/0.10.1/", - "stdDocs": "https://ziglang.org/documentation/0.10.1/std/", - "notes": "https://ziglang.org/download/0.10.1/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.10.1/zig-0.10.1.tar.xz", - "shasum": "69459bc804333df077d441ef052ffa143d53012b655a51f04cfef1414c04168c", - "size": "15143112" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.10.1/zig-bootstrap-0.10.1.tar.xz", - "shasum": "9f5781210b9be8f832553d160851635780f9bd71816065351ab29cfd8968f5e9", - "size": "43971816" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.10.1/zig-macos-x86_64-0.10.1.tar.xz", - "shasum": "02483550b89d2a3070c2ed003357fd6e6a3059707b8ee3fbc0c67f83ca898437", - "size": "45119596" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.10.1/zig-macos-aarch64-0.10.1.tar.xz", - "shasum": "b9b00477ec5fa1f1b89f35a7d2a58688e019910ab80a65eac2a7417162737656", - "size": "40517896" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.10.1/zig-linux-x86_64-0.10.1.tar.xz", - "shasum": "6699f0e7293081b42428f32c9d9c983854094bd15fee5489f12c4cf4518cc380", - "size": "44085596" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.10.1/zig-linux-aarch64-0.10.1.tar.xz", - "shasum": "db0761664f5f22aa5bbd7442a1617dd696c076d5717ddefcc9d8b95278f71f5d", - "size": "40321280" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.10.1/zig-linux-riscv64-0.10.1.tar.xz", - "shasum": "9db5b59a5112b8beb995094ba800e88b0060e9cf7cfadf4dc3e666c9010dc77b", - "size": "42196008" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.10.1/zig-linux-i386-0.10.1.tar.xz", - "shasum": "8c710ca5966b127b0ee3efba7310601ee57aab3dd6052a082ebc446c5efb2316", - "size": "48367388" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.10.1/zig-windows-x86_64-0.10.1.zip", - "shasum": "5768004e5e274c7969c3892e891596e51c5df2b422d798865471e05049988125", - "size": "73259729" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.10.1/zig-windows-aarch64-0.10.1.zip", - "shasum": "ece93b0d77b2ab03c40db99ef7ccbc63e0b6bd658af12b97898960f621305428", - "size": "69417459" - } - }, - "0.10.0": { - "date": "2022-10-31", - "docs": "https://ziglang.org/documentation/0.10.0/", - "stdDocs": "https://ziglang.org/documentation/0.10.0/std/", - "notes": "https://ziglang.org/download/0.10.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.10.0/zig-0.10.0.tar.xz", - "shasum": "d8409f7aafc624770dcd050c8fa7e62578be8e6a10956bca3c86e8531c64c136", - "size": "14530912" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.10.0/zig-bootstrap-0.10.0.tar.xz", - "shasum": "c13dc70c4ff4c09f749adc0d473cbd3942991dd4d1bd2d860fbf257d8c1bbabf", - "size": "45625516" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.10.0/zig-freebsd-x86_64-0.10.0.tar.xz", - "shasum": "dd77afa2a8676afbf39f7d6068eda81b0723afd728642adaac43cb2106253d65", - "size": "44056504" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.10.0/zig-linux-aarch64-0.10.0.tar.xz", - "shasum": "09ef50c8be73380799804169197820ee78760723b0430fa823f56ed42b06ea0f", - "size": "40387688" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.10.0/zig-linux-armv7a-0.10.0.tar.xz", - "shasum": "7201b2e89cd7cc2dde95d39485fd7d5641ba67dc6a9a58c036cb4c308d2e82de", - "size": "50805936" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.10.0/zig-linux-i386-0.10.0.tar.xz", - "shasum": "dac8134f1328c50269f3e50b334298ec7916cb3b0ef76927703ddd1c96fd0115", - "size": "48451732" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.10.0/zig-linux-riscv64-0.10.0.tar.xz", - "shasum": "2a126f3401a7a7efc4b454f0a85c133db1af5a9dfee117f172213b7cbd47bfba", - "size": "42272968" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.10.0/zig-linux-x86_64-0.10.0.tar.xz", - "shasum": "631ec7bcb649cd6795abe40df044d2473b59b44e10be689c15632a0458ddea55", - "size": "44142400" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.10.0/zig-macos-aarch64-0.10.0.tar.xz", - "shasum": "02f7a7839b6a1e127eeae22ea72c87603fb7298c58bc35822a951479d53c7557", - "size": "40602664" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.10.0/zig-macos-x86_64-0.10.0.tar.xz", - "shasum": "3a22cb6c4749884156a94ea9b60f3a28cf4e098a69f08c18fbca81c733ebfeda", - "size": "45175104" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.10.0/zig-windows-x86_64-0.10.0.zip", - "shasum": "a66e2ff555c6e48781de1bcb0662ef28ee4b88af3af2a577f7b1950e430897ee", - "size": "73181558" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.10.0/zig-windows-aarch64-0.10.0.zip", - "shasum": "1bbda8d123d44f3ae4fa90d0da04b1e9093c3f9ddae3429a4abece1e1c0bf19a", - "size": "69332389" - } - }, - "0.9.1": { - "date": "2022-02-14", - "docs": "https://ziglang.org/documentation/0.9.1/", - "stdDocs": "https://ziglang.org/documentation/0.9.1/std/", - "notes": "https://ziglang.org/download/0.9.1/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.9.1/zig-0.9.1.tar.xz", - "shasum": "38cf4e84481f5facc766ba72783e7462e08d6d29a5d47e3b75c8ee3142485210", - "size": "13940828" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.9.1/zig-bootstrap-0.9.1.tar.xz", - "shasum": "0a8e221c71860d8975c15662b3ed3bd863e81c4fe383455a596e5e0e490d6109", - "size": "42488812" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.9.1/zig-freebsd-x86_64-0.9.1.tar.xz", - "shasum": "4e06009bd3ede34b72757eec1b5b291b30aa0d5046dadd16ecb6b34a02411254", - "size": "39028848" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.9.1/zig-linux-aarch64-0.9.1.tar.xz", - "shasum": "5d99a39cded1870a3fa95d4de4ce68ac2610cca440336cfd252ffdddc2b90e66", - "size": "37034860" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.9.1/zig-linux-armv7a-0.9.1.tar.xz", - "shasum": "6de64456cb4757a555816611ea697f86fba7681d8da3e1863fa726a417de49be", - "size": "37974652" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.9.1/zig-linux-i386-0.9.1.tar.xz", - "shasum": "e776844fecd2e62fc40d94718891057a1dbca1816ff6013369e9a38c874374ca", - "size": "44969172" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.9.1/zig-linux-riscv64-0.9.1.tar.xz", - "shasum": "208dea53662c2c52777bd9e3076115d2126a4f71aed7f2ff3b8fe224dc3881aa", - "size": "39390868" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.9.1/zig-linux-x86_64-0.9.1.tar.xz", - "shasum": "be8da632c1d3273f766b69244d80669fe4f5e27798654681d77c992f17c237d7", - "size": "41011464" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.9.1/zig-macos-aarch64-0.9.1.tar.xz", - "shasum": "8c473082b4f0f819f1da05de2dbd0c1e891dff7d85d2c12b6ee876887d438287", - "size": "38995640" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.9.1/zig-macos-x86_64-0.9.1.tar.xz", - "shasum": "2d94984972d67292b55c1eb1c00de46580e9916575d083003546e9a01166754c", - "size": "43713044" - }, - "i386-windows": { - "tarball": "https://ziglang.org/download/0.9.1/zig-windows-i386-0.9.1.zip", - "shasum": "74a640ed459914b96bcc572183a8db687bed0af08c30d2ea2f8eba03ae930f69", - "size": "67929868" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.9.1/zig-windows-x86_64-0.9.1.zip", - "shasum": "443da53387d6ae8ba6bac4b3b90e9fef4ecbe545e1c5fa3a89485c36f5c0e3a2", - "size": "65047697" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.9.1/zig-windows-aarch64-0.9.1.zip", - "shasum": "621bf95f54dc3ff71466c5faae67479419951d7489e40e87fd26d195825fb842", - "size": "61478151" - } - }, - "0.9.0": { - "date": "2021-12-20", - "docs": "https://ziglang.org/documentation/0.9.0/", - "stdDocs": "https://ziglang.org/documentation/0.9.0/std/", - "notes": "https://ziglang.org/download/0.9.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.9.0/zig-0.9.0.tar.xz", - "shasum": "cd1be83b12f8269cc5965e59877b49fdd8fa638efb6995ac61eb4cea36a2e381", - "size": "13928772" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.9.0/zig-bootstrap-0.9.0.tar.xz", - "shasum": "16b0bdf0bc0a5ed1e0950e08481413d806192e06443a512347526647b2baeabc", - "size": "42557736" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.9.0/zig-freebsd-x86_64-0.9.0.tar.xz", - "shasum": "c95afe679b7cc4110dc2ecd3606c83a699718b7a958d6627f74c20886333e194", - "size": "41293236" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.9.0/zig-linux-aarch64-0.9.0.tar.xz", - "shasum": "1524fedfdbade2dbc9bae1ed98ad38fa7f2114c9a3e94da0d652573c75efbc5a", - "size": "40008396" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.9.0/zig-linux-armv7a-0.9.0.tar.xz", - "shasum": "50225dee6e6448a63ee96383a34d9fe3bba34ae8da1a0c8619bde2cdfc1df87d", - "size": "41196876" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.9.0/zig-linux-i386-0.9.0.tar.xz", - "shasum": "b0dcf688349268c883292acdd55eaa3c13d73b9146e4b990fad95b84a2ac528b", - "size": "47408656" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.9.0/zig-linux-riscv64-0.9.0.tar.xz", - "shasum": "85466de07504767ed37f59782672ad41bbdf43d6480fafd07f45543278b07620", - "size": "44171420" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.9.0/zig-linux-x86_64-0.9.0.tar.xz", - "shasum": "5c55344a877d557fb1b28939785474eb7f4f2f327aab55293998f501f7869fa6", - "size": "43420796" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.9.0/zig-macos-aarch64-0.9.0.tar.xz", - "shasum": "3991c70594d61d09fb4b316157a7c1d87b1d4ec159e7a5ecd11169ff74cad832", - "size": "39013392" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.9.0/zig-macos-x86_64-0.9.0.tar.xz", - "shasum": "c5280eeec4d6e5ea5ce5b448dc9a7c4bdd85ecfed4c1b96aa0835e48b36eccf0", - "size": "43764596" - }, - "i386-windows": { - "tarball": "https://ziglang.org/download/0.9.0/zig-windows-i386-0.9.0.zip", - "shasum": "bb839434afc75092015cf4c33319d31463c18512bc01dd719aedf5dcbc368466", - "size": "67946715" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.9.0/zig-windows-x86_64-0.9.0.zip", - "shasum": "084ea2646850aaf068234b0f1a92b914ed629be47075e835f8a67d55c21d880e", - "size": "65045849" - }, - "aarch64-windows": { - "tarball": "https://ziglang.org/download/0.9.0/zig-windows-aarch64-0.9.0.zip", - "shasum": "f9018725e3fb2e8992b17c67034726971156eb190685018a9ac8c3a9f7a22340", - "size": "61461921" - } - }, - "0.8.1": { - "date": "2021-09-06", - "docs": "https://ziglang.org/documentation/0.8.1/", - "stdDocs": "https://ziglang.org/documentation/0.8.1/std/", - "notes": "https://ziglang.org/download/0.8.1/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.8.1/zig-0.8.1.tar.xz", - "shasum": "8c428e14a0a89cb7a15a6768424a37442292858cdb695e2eb503fa3c7bf47f1a", - "size": "12650228" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.8.1/zig-bootstrap-0.8.1.tar.xz", - "shasum": "fa1239247f830ecd51c42537043f5220e4d1dfefdc54356fa419616a0efb3902", - "size": "43613464" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.8.1/zig-freebsd-x86_64-0.8.1.tar.xz", - "shasum": "fc4f6478bcf3a9fce1b8ef677a91694f476dd35be6d6c9c4f44a8b76eedbe176", - "size": "39150924" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.8.1/zig-linux-aarch64-0.8.1.tar.xz", - "shasum": "2166dc9f2d8df387e8b4122883bb979d739281e1ff3f3d5483fec3a23b957510", - "size": "37605932" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.8.1/zig-linux-armv7a-0.8.1.tar.xz", - "shasum": "5ba58141805e2519f38cf8e715933cbf059f4f3dade92c71838cce341045de05", - "size": "39185876" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.8.1/zig-linux-i386-0.8.1.tar.xz", - "shasum": "2f3e84f30492b5f1c5f97cecc0166f07a8a8d50c5f85dbb3a6ef2a4ee6f915e6", - "size": "44782932" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.8.1/zig-linux-riscv64-0.8.1.tar.xz", - "shasum": "4adfaf147b025917c03367462fe5018aaa9edbc6439ef9cd0da2b074ae960554", - "size": "41234480" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.8.1/zig-linux-x86_64-0.8.1.tar.xz", - "shasum": "6c032fc61b5d77a3f3cf781730fa549f8f059ffdb3b3f6ad1c2994d2b2d87983", - "size": "41250060" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.8.1/zig-macos-aarch64-0.8.1.tar.xz", - "shasum": "5351297e3b8408213514b29c0a938002c5cf9f97eee28c2f32920e1227fd8423", - "size": "35340712" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.8.1/zig-macos-x86_64-0.8.1.tar.xz", - "shasum": "16b0e1defe4c1807f2e128f72863124bffdd906cefb21043c34b673bf85cd57f", - "size": "39946200" - }, - "i386-windows": { - "tarball": "https://ziglang.org/download/0.8.1/zig-windows-i386-0.8.1.zip", - "shasum": "099605051eb0452a947c8eab8fbbc7e43833c8376d267e94e41131c289a1c535", - "size": "64152358" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.8.1/zig-windows-x86_64-0.8.1.zip", - "shasum": "43573db14cd238f7111d6bdf37492d363f11ecd1eba802567a172f277d003926", - "size": "61897838" - } - }, - "0.8.0": { - "date": "2021-06-04", - "docs": "https://ziglang.org/documentation/0.8.0/", - "stdDocs": "https://ziglang.org/documentation/0.8.0/std/", - "notes": "https://ziglang.org/download/0.8.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.8.0/zig-0.8.0.tar.xz", - "shasum": "03a828d00c06b2e3bb8b7ff706997fd76bf32503b08d759756155b6e8c981e77", - "size": "12614896" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.8.0/zig-bootstrap-0.8.0.tar.xz", - "shasum": "10600bc9c01f92e343f40d6ecc0ad05d67d27c3e382bce75524c0639cd8ca178", - "size": "43574248" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.8.0/zig-freebsd-x86_64-0.8.0.tar.xz", - "shasum": "0d3ccc436c8c0f50fd55462f72f8492d98723c7218ffc2a8a1831967d81b4bdc", - "size": "39125332" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.8.0/zig-linux-aarch64-0.8.0.tar.xz", - "shasum": "ee204ca2c2037952cf3f8b10c609373a08a291efa4af7b3c73be0f2b27720470", - "size": "37575428" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.8.0/zig-linux-armv7a-0.8.0.tar.xz", - "shasum": "d00b8bd97b79f45d6f5da956983bafeaa082e6c2ae8c6e1c6d4faa22fa29b320", - "size": "38884212" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.8.0/zig-linux-i386-0.8.0.tar.xz", - "shasum": "96e43ee6ed81c3c63401f456bd1c58ee6d42373a43cb324f5cf4974ca0998865", - "size": "42136032" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.8.0/zig-linux-riscv64-0.8.0.tar.xz", - "shasum": "75997527a78cdab64c40c43d9df39c01c4cdb557bb3992a869838371a204cfea", - "size": "40016268" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.8.0/zig-linux-x86_64-0.8.0.tar.xz", - "shasum": "502625d3da3ae595c5f44a809a87714320b7a40e6dff4a895b5fa7df3391d01e", - "size": "41211184" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.8.0/zig-macos-aarch64-0.8.0.tar.xz", - "shasum": "b32d13f66d0e1ff740b3326d66a469ee6baddbd7211fa111c066d3bd57683111", - "size": "35292180" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.8.0/zig-macos-x86_64-0.8.0.tar.xz", - "shasum": "279f9360b5cb23103f0395dc4d3d0d30626e699b1b4be55e98fd985b62bc6fbe", - "size": "39969312" - }, - "i386-windows": { - "tarball": "https://ziglang.org/download/0.8.0/zig-windows-i386-0.8.0.zip", - "shasum": "b6ec9aa6cd6f3872fcb30d43ff411802d82008a0c4142ee49e208a09b2c1c5fe", - "size": "61507213" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.8.0/zig-windows-x86_64-0.8.0.zip", - "shasum": "8580fbbf3afb72e9b495c7f8aeac752a03475ae0bbcf5d787f3775c7e1f4f807", - "size": "61766193" - } - }, - "0.7.1": { - "date": "2020-12-13", - "docs": "https://ziglang.org/documentation/0.7.1/", - "stdDocs": "https://ziglang.org/documentation/0.7.1/std/", - "notes": "https://ziglang.org/download/0.7.1/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.7.1/zig-0.7.1.tar.xz", - "shasum": "2db3b944ab368d955b48743d9f7c963b8f96de1a441ba5a35e197237cc6dae44", - "size": "10711824" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.7.1/zig-bootstrap-0.7.1.tar.xz", - "shasum": "040f27c1fae4b0cac0a2782aecdb691f6a2f8e89db6a6ed35024c31c304fd9b2", - "size": "40232612" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.7.1/zig-freebsd-x86_64-0.7.1.tar.xz", - "shasum": "e73c1dca35791a3183fdd5ecde0443ebbe180942efceafe651886034fb8def09", - "size": "39066808" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.7.1/zig-linux-aarch64-0.7.1.tar.xz", - "shasum": "48ec90eba407e4587ddef7eecef25fec7e13587eb98e3b83c5f2f5fff2a5cbe7", - "size": "33780552" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.7.1/zig-linux-armv7a-0.7.1.tar.xz", - "shasum": "5a0662e07b4c4968665e1f97558f8591f6facec45d2e0ff5715e661743107ceb", - "size": "35813504" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.7.1/zig-linux-i386-0.7.1.tar.xz", - "shasum": "4882e052e5f83690bd0334bb4fc1702b5403cb3a3d2aa63fd7d6043d8afecba3", - "size": "39230912" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.7.1/zig-linux-riscv64-0.7.1.tar.xz", - "shasum": "187294bfd35983348c3fe042901b42e67e7e36ab7f77a5f969d21c0051f4d21f", - "size": "37454812" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.7.1/zig-linux-x86_64-0.7.1.tar.xz", - "shasum": "18c7b9b200600f8bcde1cd8d7f1f578cbc3676241ce36d771937ce19a8159b8d", - "size": "37848176" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.7.1/zig-macos-x86_64-0.7.1.tar.xz", - "shasum": "845cb17562978af0cf67e3993f4e33330525eaf01ead9386df9105111e3bc519", - "size": "36211076" - }, - "i386-windows": { - "tarball": "https://ziglang.org/download/0.7.1/zig-windows-i386-0.7.1.zip", - "shasum": "a1b9a7421e13153e07fd2e2c93ff29aad64d83105b8fcdafa633dbe689caf1c0", - "size": "54374983" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.7.1/zig-windows-x86_64-0.7.1.zip", - "shasum": "4818a8a65b4672bc52c0ae7f14d014e0eb8caf10f12c0745176820384cea296a", - "size": "54909997" - } - }, - "0.7.0": { - "date": "2020-11-08", - "docs": "https://ziglang.org/documentation/0.7.0/", - "stdDocs": "https://ziglang.org/documentation/0.7.0/std/", - "notes": "https://ziglang.org/download/0.7.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.7.0/zig-0.7.0.tar.xz", - "shasum": "0efd2cf6c3b05723db80e9cf193bc55150bba84ca41f855a90f53fc756445f83", - "size": "10683920" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.7.0/zig-bootstrap-0.7.0.tar.xz", - "shasum": "f073beaf5c53c8c57c0d374cbfcb332ef92ad703173edba0d9e0f2ed28401b72", - "size": "40200436" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.7.0/zig-freebsd-x86_64-0.7.0.tar.xz", - "shasum": "a0c926272ee4ae720034b4a6a1dc98399d76156dd84182554740f0ca8a41fc99", - "size": "34798992" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.7.0/zig-linux-aarch64-0.7.0.tar.xz", - "shasum": "f89933bac87d44be82325754ff88423020c81c7032a6fc41cfeb81e982eeab9b", - "size": "33096140" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.7.0/zig-linux-armv7a-0.7.0.tar.xz", - "shasum": "011c267e25a96ee160505a560c441daa045359a9d50e13ab1bada9d75c95db2d", - "size": "35157584" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.7.0/zig-linux-i386-0.7.0.tar.xz", - "shasum": "4bb2072cd363bcb1cbeb4872ff5cbc1f683b02d0cc1f90c46e3ea7422ce53222", - "size": "38530596" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.7.0/zig-linux-riscv64-0.7.0.tar.xz", - "shasum": "40dff81faa6f232ac40abbf88b9371f3cc932b6e09c423b94387c9ea580cb7be", - "size": "36759992" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.7.0/zig-linux-x86_64-0.7.0.tar.xz", - "shasum": "e619b1c6094c095b932767f527aee2507f847ea981513ff8a08aab0fd730e0ac", - "size": "37154432" - }, - "aarch64-macos": { - "tarball": "https://ziglang.org/download/0.7.0/zig-macos-aarch64-0.7.0.tar.xz", - "shasum": "338238035734db74ea4f30e500a4893bf741d38305c10952d5e39fa05bdb057d", - "size": "33739424" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.7.0/zig-macos-x86_64-0.7.0.tar.xz", - "shasum": "94063f9a311cbbf7a2e0a12295e09437182cf950f18cb0eb30ea9893f3677f24", - "size": "35258328" - }, - "i386-windows": { - "tarball": "https://ziglang.org/download/0.7.0/zig-windows-i386-0.7.0.zip", - "shasum": "b1e520aacbfbd645ff3521b3eb4d44166d9a0288b8725e4b001f8b50a425eb2e", - "size": "53390517" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.7.0/zig-windows-x86_64-0.7.0.zip", - "shasum": "965f56c0a36f9cda2125e3a348bc654f7f155e2804c3667d231775ec228f8553", - "size": "53943784" - } - }, - "0.6.0": { - "date": "2020-04-13", - "docs": "https://ziglang.org/documentation/0.6.0/", - "stdDocs": "https://ziglang.org/documentation/0.6.0/std/", - "notes": "https://ziglang.org/download/0.6.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.6.0/zig-0.6.0.tar.xz", - "shasum": "5d167dc19354282dd35dd17b38e99e1763713b9be8a4ba9e9e69284e059e7204", - "size": "10349552" - }, - "bootstrap": { - "tarball": "https://ziglang.org/download/0.6.0/zig-bootstrap-0.6.0.tar.xz", - "shasum": "5e0e4dc878b3dd0c1852a442b174f0732e8c07869a8fcd226b71a93b89b381ab", - "size": "38469948" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.6.0/zig-freebsd-x86_64-0.6.0.tar.xz", - "shasum": "190ff79c1eb56805a315d7c7a51082e32f62926250c0702b36760c225e1634a3", - "size": "36974604" - }, - "aarch64-linux": { - "tarball": "https://ziglang.org/download/0.6.0/zig-linux-aarch64-0.6.0.tar.xz", - "shasum": "e7520efd42cfa02be48c2e430d08fe1f3cbb999d21d9f0d3ffd0febb976b2f41", - "size": "37090044" - }, - "armv6kz-linux": { - "tarball": "https://ziglang.org/download/0.6.0/zig-linux-armv6kz-0.6.0.tar.xz", - "shasum": "36b6493b3fed43eb1f0000e765798ad31a6bb7d7fd3f553ac1c3761dbc919b82", - "size": "39133452" - }, - "armv7a-linux": { - "tarball": "https://ziglang.org/download/0.6.0/zig-linux-armv7a-0.6.0.tar.xz", - "shasum": "946969abe357def95ca9cbbfcebfcf2d90cf967bcd3f48ee87662e32d91d8f35", - "size": "39143748" - }, - "i386-linux": { - "tarball": "https://ziglang.org/download/0.6.0/zig-linux-i386-0.6.0.tar.xz", - "shasum": "a97a2f9ae21575743cdd763c1917d49400d83fc562ef64582b18bade43eb24ce", - "size": "44877640" - }, - "riscv64-linux": { - "tarball": "https://ziglang.org/download/0.6.0/zig-linux-riscv64-0.6.0.tar.xz", - "shasum": "68ddee43f7503c8ae5f26a921f3602c34719a02ed2241f528c0b8b888cc14b38", - "size": "41993144" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.6.0/zig-linux-x86_64-0.6.0.tar.xz", - "shasum": "08fd3c757963630645441c2772362e9c2294020c44f14fce1b89f45de0dc1253", - "size": "44766320" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.6.0/zig-macos-x86_64-0.6.0.tar.xz", - "shasum": "17270360e87ddc49f737e760047b2fac49f1570a824a306119b1194ac4093895", - "size": "42573184" - }, - "i386-windows": { - "tarball": "https://ziglang.org/download/0.6.0/zig-windows-i386-0.6.0.zip", - "shasum": "3b0a02618743e92175990dc6d1a787bb95ff62c4cda016f1c14c7786f575f8ca", - "size": "60446431" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.6.0/zig-windows-x86_64-0.6.0.zip", - "shasum": "c3b897832523e1026e10b2d8d55d7f895185c0a27a63681f3a23219c3f1c38f4", - "size": "49065511" - } - }, - "0.5.0": { - "date": "2019-09-30", - "docs": "https://ziglang.org/documentation/0.5.0/", - "notes": "https://ziglang.org/download/0.5.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.5.0/zig-0.5.0.tar.xz", - "shasum": "55ae16960f152bcb9cf98b4f8570902d0e559a141abf927f0d3555b7cc838a31", - "size": "10956132" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.5.0/zig-freebsd-x86_64-0.5.0.tar.xz", - "shasum": "9e1f4d36c3d584c0aa01f20eb4cd0a0eef3eee5af23e483b8414de55feab6ab6", - "size": "33650744" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.5.0/zig-macos-x86_64-0.5.0.tar.xz", - "shasum": "28702cc05745c7c0bd450487d5f4091bf0a1ad279b35eb9a640ce3e3a15b300d", - "size": "37898664" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.5.0/zig-windows-x86_64-0.5.0.zip", - "shasum": "58141323db8d84a5af62746be5f9140bc161ee760ef33dc91a887bf9ac021976", - "size": "44871804" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.5.0/zig-linux-x86_64-0.5.0.tar.xz", - "shasum": "43e8f8a8b8556edd373ddf9c1ef3ca6cf852d4d09fe07d5736d12fefedd2b4f7", - "size": "40895068" - } - }, - "0.4.0": { - "date": "2019-04-08", - "docs": "https://ziglang.org/documentation/0.4.0/", - "notes": "https://ziglang.org/download/0.4.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.4.0/zig-0.4.0.tar.xz", - "shasum": "fec1f3f6b359a3d942e0a7f9157b3b30cde83927627a0e1ea95c54de3c526cfc", - "size": "5348776" - }, - "x86_64-freebsd": { - "tarball": "https://ziglang.org/download/0.4.0/zig-freebsd-x86_64-0.4.0.tar.xz", - "shasum": "3d557c91ac36d8262eb1733bb5f261c95944f9b635e43386e3d00a3272818c30", - "size": "27269672" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.4.0/zig-macos-x86_64-0.4.0.tar.xz", - "shasum": "67c932982484d017c5111e54af9f33f15e8e05c6bc5346a55e04052159c964a8", - "size": "30841504" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.4.0/zig-windows-x86_64-0.4.0.zip", - "shasum": "fbc3dd205e064c263063f69f600bedb18e3d0aa2efa747a63ef6cafb6d73f127", - "size": "35800101" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.4.0/zig-linux-x86_64-0.4.0.tar.xz", - "shasum": "fb1954e2fb556a01f8079a08130e88f70084e08978ff853bb2b1986d8c39d84e", - "size": "32876100" - } - }, - "0.3.0": { - "date": "2018-09-28", - "docs": "https://ziglang.org/documentation/0.3.0/", - "notes": "https://ziglang.org/download/0.3.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.3.0/zig-0.3.0.tar.xz", - "shasum": "d70af604f3a8622f3393d93abb3e056bf60351e32d121e6fa4fe03d8d41e1f5a", - "size": "2335592" - }, - "x86_64-macos": { - "tarball": "https://ziglang.org/download/0.3.0/zig-macos-x86_64-0.3.0.tar.xz", - "shasum": "19dec1f1943ab7be26823376d466f7e456143deb34e17502778a949034dc2e7e", - "size": "23712696" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.3.0/zig-windows-x86_64-0.3.0.zip", - "shasum": "bb568c03950958f8bb3472139c3ab5ed74547c8c694ab50f404c202faf51baf4", - "size": "22524425" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.3.0/zig-linux-x86_64-0.3.0.tar.xz", - "shasum": "b378d0aae30cb54f28494e7bc4efbc9bfb6326f47bfb302e8b5287af777b2f3c", - "size": "25209304" - } - }, - "0.2.0": { - "date": "2018-03-15", - "docs": "https://ziglang.org/documentation/0.2.0/", - "notes": "https://ziglang.org/download/0.2.0/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.2.0/zig-0.2.0.tar.xz", - "shasum": "29c9beb172737f4d5019b88ceae829ae8bc6512fb4386cfbf895ae2b42aa6965", - "size": "1940832" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.2.0/zig-win64-0.2.0.zip", - "shasum": "4f8a2979941a1f081ec8e545cca0b72608c0db1c5a3fd377a94db40649dcd3d4", - "size": "21076274" - }, - "x86_64-linux": { - "tarball": "https://ziglang.org/download/0.2.0/zig-linux-x86_64-0.2.0.tar.xz", - "shasum": "209c6fb745d42474c0a73d6f291c7ae3a38b6a1b6b641eea285a7f840cc1a890", - "size": "22551928" - } - }, - "0.1.1": { - "date": "2017-10-17", - "docs": "https://ziglang.org/documentation/0.1.1/", - "notes": "https://ziglang.org/download/0.1.1/release-notes.html", - "src": { - "tarball": "https://ziglang.org/download/0.1.1/zig-0.1.1.tar.xz", - "shasum": "ffca0cfb263485287e19cc997b08701fcd5f24b700345bcdc3dd8074f5a104e0", - "size": "1659716" - }, - "x86_64-windows": { - "tarball": "https://ziglang.org/download/0.1.1/zig-win64-0.1.1.zip", - "shasum": "6fc88bef531af7e567fe30bf60da1487b86833cbee84c7a2f3e317030aa5b660", - "size": "19757776" - } - } -} \ No newline at end of file diff --git a/pkg/ziex/npm/@zigc/lib/package.json b/pkg/ziex/npm/@zigc/lib/package.json deleted file mode 100644 index 67067bd4..00000000 --- a/pkg/ziex/npm/@zigc/lib/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "@zigc/lib", - "version": "0.15.20", - "description": "Zig standard library and libc headers (shared across all platforms)", - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT" -} diff --git a/pkg/ziex/npm/@zigc/linux-arm64/package.json b/pkg/ziex/npm/@zigc/linux-arm64/package.json deleted file mode 100644 index e5741940..00000000 --- a/pkg/ziex/npm/@zigc/linux-arm64/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "@zigc/linux-arm64", - "version": "0.15.20", - "description": "Zig compiler binary for Linux ARM64", - "os": [ - "linux" - ], - "cpu": [ - "arm64" - ], - "bin": { - "zig": "bin/zig" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT", - "preferUnplugged": true -} diff --git a/pkg/ziex/npm/@zigc/linux-x64/package.json b/pkg/ziex/npm/@zigc/linux-x64/package.json deleted file mode 100644 index 64dec182..00000000 --- a/pkg/ziex/npm/@zigc/linux-x64/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "@zigc/linux-x64", - "version": "0.15.20", - "description": "Zig compiler binary for Linux x64", - "os": [ - "linux" - ], - "cpu": [ - "x64" - ], - "bin": { - "zig": "bin/zig" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT", - "preferUnplugged": true -} diff --git a/pkg/ziex/npm/@zigc/prepare.sh b/pkg/ziex/npm/@zigc/prepare.sh deleted file mode 100755 index e0b7e2e1..00000000 --- a/pkg/ziex/npm/@zigc/prepare.sh +++ /dev/null @@ -1,253 +0,0 @@ -#!/bin/bash -set -euo pipefail - -# Downloads Zig compiler binaries for all platforms. -# Reads version from package.json. -# Places lib/ in the shared @zigc/lib package (identical across platforms). - -SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" -ZIG_VER=$(node -p "require('$SCRIPT_DIR/package.json').version") -LIB_DIR="$SCRIPT_DIR/lib" -CACHE_DIR="$SCRIPT_DIR/.cache" -LIB_COPIED=false - -# Zig signing public key (from https://ziglang.org/download/) -ZIG_PUBKEY="RWSGOq2NVecA2UPNdBUZykf1CCb147pkmdtYxgb3Ti+JO/wCYvhbAb/U" - -# For dev versions, read full version (with +hash) from index.json -# npm strips the +hash from package.json versions -ZIG_FULL_VER="$ZIG_VER" -if [[ "$ZIG_VER" == *"-dev"* ]] && [ -f "$SCRIPT_DIR/index.json" ]; then - ZIG_FULL_VER=$(node -p "require('$SCRIPT_DIR/index.json').master.version") -fi - -# Update version in all workspace package.json files -echo "Updating package versions to $ZIG_VER..." -for pkg in lib cli darwin-arm64 darwin-x64 linux-x64 linux-arm64 win32-x64 win32-arm64; do - pkg_json="$SCRIPT_DIR/$pkg/package.json" - [ -f "$pkg_json" ] || continue - node -e " - const fs = require('fs'); - const p = JSON.parse(fs.readFileSync('$pkg_json', 'utf8')); - p.version = '$ZIG_VER'; - // Update any @zigc/* refs in dependencies / optionalDependencies - for (const key of ['dependencies', 'optionalDependencies']) { - if (!p[key]) continue; - for (const dep of Object.keys(p[key])) { - if (dep.startsWith('@zigc/')) p[key][dep] = '$ZIG_VER'; - } - } - fs.writeFileSync('$pkg_json', JSON.stringify(p, null, 2) + '\n'); - " -done - -# --version: only sync package versions, skip downloads -if [[ "${1:-}" == "--version" ]]; then - echo "Done." - exit 0 -fi - -# Dev builds use /builds/, releases use /download// -if [[ "$ZIG_FULL_VER" == *"-dev"* ]]; then - OFFICIAL_BASE="https://ziglang.org/builds" -else - OFFICIAL_BASE="https://ziglang.org/download/${ZIG_FULL_VER}" -fi - -# Check for minisign; prompt to continue without verification if missing -MINISIGN_AVAILABLE=true -if ! command -v minisign &>/dev/null; then - MINISIGN_AVAILABLE=false - echo "warning: 'minisign' not found — archive signatures cannot be verified." - echo " Install: https://jedisct1.github.io/minisign/" - read -r -p " Continue without signature verification? [y/N] " reply - if [[ ! "$reply" =~ ^[yY]$ ]]; then - exit 1 - fi -fi - -# Fetch community mirrors, shuffle them, append official as final fallback -echo "Fetching mirrors..." -MIRROR_RAW=$(curl -fsSL "https://ziglang.org/download/community-mirrors.txt" 2>/dev/null || echo "") -SHUFFLED_MIRRORS=$(printf '%s\n' "$MIRROR_RAW" | python3 -c " -import sys, random -lines = [l.strip() for l in sys.stdin if l.strip()] -random.shuffle(lines) -print('\n'.join(lines)) -") -# Append official base as last-resort fallback -SHUFFLED_MIRRORS="${SHUFFLED_MIRRORS} -${OFFICIAL_BASE}" - -# --version: only sync package versions, skip downloads -if [[ "${1:-}" == "--version" ]]; then - echo "Done." - exit 0 -fi - -echo "Downloading Zig $ZIG_FULL_VER for all platforms..." - -# Track version to detect stale binaries -VERSION_FILE="$SCRIPT_DIR/.zig-version" -OLD_VER="" -if [ -f "$VERSION_FILE" ]; then - OLD_VER=$(cat "$VERSION_FILE") -fi - -# If version changed, clean all binaries and lib -if [ -n "$OLD_VER" ] && [ "$OLD_VER" != "$ZIG_FULL_VER" ]; then - echo " Version changed ($OLD_VER -> $ZIG_VER), cleaning old binaries..." - rm -rf "$SCRIPT_DIR"/darwin-arm64/bin "$SCRIPT_DIR"/darwin-x64/bin \ - "$SCRIPT_DIR"/linux-x64/bin "$SCRIPT_DIR"/linux-arm64/bin \ - "$SCRIPT_DIR"/win32-x64/bin "$SCRIPT_DIR"/win32-arm64/bin - # Remove lib contents but preserve package.json - find "$LIB_DIR" -mindepth 1 -not -name 'package.json' -delete 2>/dev/null || true -fi - -# platform-dir zig-target archive-ext -PLATFORMS=( - "darwin-arm64 aarch64-macos tar.xz" - "darwin-x64 x86_64-macos tar.xz" - "linux-x64 x86_64-linux tar.xz" - "linux-arm64 aarch64-linux tar.xz" - "win32-x64 x86_64-windows zip" - "win32-arm64 aarch64-windows zip" -) - -# Check if lib is already populated with actual Zig content -if [ -d "$LIB_DIR/std" ]; then - LIB_COPIED=true -fi - -for entry in "${PLATFORMS[@]}"; do - read -r dir target ext <<< "$entry" - pkg_dir="$SCRIPT_DIR/$dir" - bin_dir="$pkg_dir/bin" - mkdir -p "$bin_dir" - - if [ -f "$bin_dir/zig" ] || [ -f "$bin_dir/zig.exe" ]; then - echo " $dir: already exists, skipping" - continue - fi - - archive_name="zig-${target}-${ZIG_FULL_VER}.${ext}" - extracted_dir="zig-${target}-${ZIG_FULL_VER}" - cached_archive="$CACHE_DIR/$ZIG_FULL_VER/$archive_name" - cached_minisig="${cached_archive}.minisig" - - # Try to use verified cached archive, otherwise fetch from mirrors - _cache_valid() { - [ -f "$cached_archive" ] || return 1 - if [ "$MINISIGN_AVAILABLE" = true ]; then - [ -f "$cached_minisig" ] && \ - minisign -V -P "$ZIG_PUBKEY" -m "$cached_archive" -x "$cached_minisig" -q 2>/dev/null - else - return 0 - fi - } - - if _cache_valid; then - echo " $dir: using cached archive" - else - rm -f "$cached_archive" "$cached_minisig" - mkdir -p "$CACHE_DIR/$ZIG_FULL_VER" - fetched=false - - while IFS= read -r mirror; do - [ -z "$mirror" ] && continue - url="${mirror}/${archive_name}" - tmp_archive="${cached_archive}.tmp" - tmp_minisig="${cached_minisig}.tmp" - - echo " $dir: trying ${mirror}..." - curl -fsSL "${url}?source=zigc-npm" -o "$tmp_archive" 2>/dev/null || { rm -f "$tmp_archive"; continue; } - - if [ "$MINISIGN_AVAILABLE" = true ]; then - curl -fsSL "${url}.minisig?source=zigc-npm" -o "$tmp_minisig" 2>/dev/null || { rm -f "$tmp_archive" "$tmp_minisig"; continue; } - - # Verify signature - if ! minisign -V -P "$ZIG_PUBKEY" -m "$tmp_archive" -x "$tmp_minisig" -q 2>/dev/null; then - echo " $dir: signature verification failed, skipping mirror" - rm -f "$tmp_archive" "$tmp_minisig" - continue - fi - - # Verify filename in trusted comment to prevent downgrade attacks - actual_name=$(grep "^trusted comment:" "$tmp_minisig" | sed 's/.*\bfile:\([^ \t]*\).*/\1/') - if [ "$actual_name" != "$archive_name" ]; then - echo " $dir: filename mismatch in signature (got '$actual_name'), skipping mirror" - rm -f "$tmp_archive" "$tmp_minisig" - continue - fi - - mv "$tmp_minisig" "$cached_minisig" - fi - - mv "$tmp_archive" "$cached_archive" - fetched=true - break - done <<< "$SHUFFLED_MIRRORS" - - if [ "$fetched" = false ]; then - echo " $dir: all mirrors failed" - exit 1 - fi - fi - - echo " $dir: extracting..." - if [ "$ext" = "zip" ]; then - (cd "$pkg_dir" && unzip -qo "$cached_archive") - cp "$pkg_dir/$extracted_dir/zig.exe" "$bin_dir/zig.exe" - else - (cd "$pkg_dir" && tar xf "$cached_archive") - cp "$pkg_dir/$extracted_dir/zig" "$bin_dir/zig" - chmod +x "$bin_dir/zig" - fi - - # Copy lib/ to shared @zigc/lib package (only once, identical across platforms) - if [ "$LIB_COPIED" = false ] && [ -d "$pkg_dir/$extracted_dir/lib" ]; then - echo " lib: copying shared lib/ from $dir" - mkdir -p "$LIB_DIR" - cp -r "$pkg_dir/$extracted_dir/lib/"* "$LIB_DIR/" - LIB_COPIED=true - fi - - # Clean up extracted directory (keep cached archive) - rm -rf "$pkg_dir/$extracted_dir" - echo " $dir: done" -done - -# If all binaries were already cached, lib may not have been copied yet — extract it now -if [ "$LIB_COPIED" = false ]; then - for entry in "${PLATFORMS[@]}"; do - read -r dir target ext <<< "$entry" - archive_name="zig-${target}-${ZIG_FULL_VER}.${ext}" - cached_archive="$CACHE_DIR/$ZIG_FULL_VER/$archive_name" - extracted_dir="zig-${target}-${ZIG_FULL_VER}" - pkg_dir="$SCRIPT_DIR/$dir" - [ -f "$cached_archive" ] || continue - - echo " lib: extracting from cached $dir archive..." - if [ "$ext" = "zip" ]; then - (cd "$pkg_dir" && unzip -qo "$cached_archive" "${extracted_dir}/lib/*") - else - (cd "$pkg_dir" && tar xf "$cached_archive" "${extracted_dir}/lib") - fi - mkdir -p "$LIB_DIR" - cp -r "$pkg_dir/$extracted_dir/lib/"* "$LIB_DIR/" - rm -rf "$pkg_dir/$extracted_dir" - LIB_COPIED=true - break - done -fi - -# Copy README.md to all packages -echo "Copying README.md to all packages..." -for dir in cli lib darwin-arm64 darwin-x64 linux-x64 linux-arm64 win32-x64 win32-arm64; do - cp "$SCRIPT_DIR/README.md" "$SCRIPT_DIR/$dir/README.md" -done - -# Save current version -echo "$ZIG_FULL_VER" > "$VERSION_FILE" - -echo "All platforms ready!" diff --git a/pkg/ziex/npm/@zigc/win32-arm64/package.json b/pkg/ziex/npm/@zigc/win32-arm64/package.json deleted file mode 100644 index cbea3331..00000000 --- a/pkg/ziex/npm/@zigc/win32-arm64/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "@zigc/win32-arm64", - "version": "0.15.20", - "description": "Zig compiler binary for Windows ARM64", - "os": [ - "win32" - ], - "cpu": [ - "arm64" - ], - "bin": { - "zig": "bin/zig.exe" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT", - "preferUnplugged": true -} diff --git a/pkg/ziex/npm/@zigc/win32-x64/package.json b/pkg/ziex/npm/@zigc/win32-x64/package.json deleted file mode 100644 index 8e9dbb4b..00000000 --- a/pkg/ziex/npm/@zigc/win32-x64/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "@zigc/win32-x64", - "version": "0.15.20", - "description": "Zig compiler binary for Windows x64", - "os": [ - "win32" - ], - "cpu": [ - "x64" - ], - "bin": { - "zig": "bin/zig.exe" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ziex-dev/ziex.git" - }, - "license": "MIT", - "preferUnplugged": true -}