From 6935f474db886b4a990652a9905b11cf49b1e110 Mon Sep 17 00:00:00 2001 From: Danh Phan Date: Mon, 19 Feb 2024 12:42:39 -0600 Subject: [PATCH] deps: Use HTTPS URLs zlib decompressor's broken in Zig which causes git URLs to not work. The issue's tracked here: https://github.com/ziglang/zig/issues/18967. --- build.zig.zon | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 7a518c1..5a67991 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -10,11 +10,11 @@ }, .dependencies = .{ .getty = .{ - .url = "git+https://github.com/getty-zig/getty.git#e3f8894de591bd4ed36fd8dea65b00375d064bee", - .hash = "122051041b2d2b96aa50ff1ea9858d1a1dc50bc3ad0e8eda2475d669abe891cbfd9d", + .url = "https://github.com/getty-zig/getty/archive/165caba754c7424431b8ea233a315486f133acab.tar.gz", + .hash = "1220345b9da2d359d3be77486428eca92c824de275571c17d24e8a6bf8760593ecf0", }, .protest = .{ - .url = "git+https://github.com/ibokuri/protest.git#bae398b701e763ef18480aa3cfcca103716996de", + .url = "https://github.com/ibokuri/protest/archive/bae398b701e763ef18480aa3cfcca103716996de.tar.gz", .hash = "1220c70517d1bc1b3734c9c4fe81045b1927320b2590d8af28be32883f5fd4d3af8d", }, },