From 5e0cdc81eda8b5a16ea6b0685af82ba2de8e64ea Mon Sep 17 00:00:00 2001 From: Coleman McFarland Date: Thu, 10 Oct 2024 19:58:15 -0400 Subject: [PATCH] build fix: update libsodium to get a build definition without aarch64_32 On recommendation from the libsodium dev, thir commit is from the "stable" branch of libsodium, not a release tag. Update this to a release when one containing this fix is available. --- build.zig.zon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 649350d..91f1e2b 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -18,8 +18,8 @@ .lazy = true, }, .libsodium = .{ - .url = "git+https://github.com/jedisct1/libsodium.git?ref=1.0.20-RELEASE#9511c982fb1d046470a8b42aa36556cdb7da15de", - .hash = "1220d265dc673167ffe4a3cefe2840893d2910cfd773cfb1893ff768d5f1351d2a1f", + .url = "git+https://github.com/jedisct1/libsodium.git?ref=stable#3c6da4b8c27c7d546746eadabc9e2dd6c1fdfc2c", + .hash = "12207667c06c40826838b57922ec9c7f90ab2613bf317c6717d0ed2cdf6ca91df718", .lazy = true, }, },