Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,9 @@ zig-pkg/

.env*
!.env.example

# Zig renamed the build cache to .zig-cache (leading dot) in 0.12.
# This file still said zig-cache/, so the pattern never matched and 56 cache
# files were committed. It went unnoticed because no workflow here had ever
# run a build.
.zig-cache/
2 changes: 0 additions & 2 deletions .zig-cache/h/36d2adc3c0ae444d905892c381bc9513.txt

This file was deleted.

552 changes: 0 additions & 552 deletions .zig-cache/h/36e24323a46e3798f7edd9e8f5161289.txt

This file was deleted.

820 changes: 0 additions & 820 deletions .zig-cache/h/37ef1c6fb9a1ce25e8795cbde7b7241b.txt

This file was deleted.

552 changes: 0 additions & 552 deletions .zig-cache/h/3bcddcd3fcbd731ce87fcf5130cd8b19.txt

This file was deleted.

2 changes: 0 additions & 2 deletions .zig-cache/h/62160156dc3dfba77ef271c9f9e0d31f.txt

This file was deleted.

Empty file.
Empty file.
820 changes: 0 additions & 820 deletions .zig-cache/h/b013bc9c85574837a5036b5baeddda1b.txt

This file was deleted.

2 changes: 0 additions & 2 deletions .zig-cache/h/b125bb5b547f374bdbb22e4ba3cfb035.txt

This file was deleted.

820 changes: 0 additions & 820 deletions .zig-cache/h/cc5788a69922d237791259f209be484a.txt

This file was deleted.

820 changes: 0 additions & 820 deletions .zig-cache/h/cf055f00b105ab2a01097e24bcdafeeb.txt

This file was deleted.

817 changes: 0 additions & 817 deletions .zig-cache/h/d05e39b7deab6f73e1f745090c74e6d2.txt

This file was deleted.

823 changes: 0 additions & 823 deletions .zig-cache/h/fd6c3ee2fb2889b536b24662a5f6260c.txt

This file was deleted.

Empty file removed .zig-cache/h/timestamp
Empty file.
Binary file removed .zig-cache/o/1214f82e8f03cd30247fd18f22ee4276/build
Binary file not shown.
Binary file removed .zig-cache/o/17f4a25611a4d48072444f2ae5ce82a2/build
Binary file not shown.
Binary file removed .zig-cache/o/1b57627cf8d0c03bba044478baecff95/build
Binary file not shown.
12 changes: 0 additions & 12 deletions .zig-cache/o/329e50da5acdebf08fe07945744f0fd1/dependencies.zig

This file was deleted.

Binary file not shown.
12 changes: 0 additions & 12 deletions .zig-cache/o/6b41c600a19500d49e27026dd155072a/dependencies.zig

This file was deleted.

Binary file not shown.
12 changes: 0 additions & 12 deletions .zig-cache/o/a4462ca6dcba10ba5ca74be8486aaae4/dependencies.zig

This file was deleted.

Binary file removed .zig-cache/o/c52fc0d15f59844eaa1bb0430279fd51/hslm
Binary file not shown.
Binary file removed .zig-cache/o/f2abb1bc9f889f25f2148915437269dc/build
Binary file not shown.
Binary file removed .zig-cache/z/0483ec65ef0a7985b9c4aef97eba0498
Binary file not shown.
Binary file removed .zig-cache/z/084d3107d2243df5ba53216c4f087e2d
Binary file not shown.
Binary file removed .zig-cache/z/1910343b7bc69a4011db3aa02d6c4a9c
Binary file not shown.
Binary file removed .zig-cache/z/2045efa8d7fdf09a340b770f520ae2a0
Binary file not shown.
Binary file removed .zig-cache/z/244e5ee33a0f3d05658d993fd8923129
Binary file not shown.
Binary file removed .zig-cache/z/31bbdf70f346a5cce0e63f60a3dbd9e5
Binary file not shown.
Binary file removed .zig-cache/z/3b66c64048130fee36a44a2c213b120d
Binary file not shown.
Binary file removed .zig-cache/z/6e840847bab37840b195151e550cb002
Binary file not shown.
Binary file removed .zig-cache/z/87e175ee8fc6070332bc7072c0a1ed9d
Binary file not shown.
Binary file removed .zig-cache/z/993aeceb649a49230b43c844d872d463
Binary file not shown.
Binary file removed .zig-cache/z/a9ea7fe2effb6df93fe12dffc9b07e39
Binary file not shown.
Binary file removed .zig-cache/z/aa4c54c226f3726937cb71f9e629b8c3
Binary file not shown.
Binary file removed .zig-cache/z/b4344799c31ecb98c69dda4d773283fa
Binary file not shown.
Binary file removed .zig-cache/z/b738f53a822eea6db1b3399a462eb12b
Binary file not shown.
Binary file removed .zig-cache/z/c5c12d5ce6338d26b76a3f26171565bf
Binary file not shown.
Binary file removed .zig-cache/z/f065e923e341b8c92853d17755bef296
Binary file not shown.
12 changes: 10 additions & 2 deletions build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
.name = .trinity_training,
.version = "0.1.0",
.dependencies = .{
// Pinned to a commit, not to refs/heads/main.
//
// A .url pointing at main's tarball plus a content .hash is
// self-invalidating: every merge upstream changes the tarball, so the
// hash stops matching and every downstream manifest breaks at fetch,
// before a single file is compiled. That is how this pin came to be
// three versions stale — it broke the moment upstream moved, and
// nothing downstream could build to notice.
.golden_float = .{
.url = "https://github.com/gHashTag/zig-golden-float/archive/refs/heads/main.tar.gz",
.hash = "golden_float-2.1.0-h7LKhS0ICwBV7_RGpLbK30-1dFMQ1SUmMq1c34c4O0yj",
.url = "https://github.com/gHashTag/zig-golden-float/archive/e7ce32885de2a8c50b7b6a3030d0592202145dd1.tar.gz",
.hash = "golden_float-2.1.0-h7LKhUUNCwAtKVHQ56wjridCZVwXY7_oxT2hXD9xCDdF",
},
},
.paths = .{
Expand Down
Loading