diff options
| author | xander <xander@biltopia.org> | 2025-12-07 13:12:06 +0100 |
|---|---|---|
| committer | xander <xander@biltopia.org> | 2025-12-07 13:12:06 +0100 |
| commit | 516e6ed4a9066fa43d6159b2a0ec58416ab28013 (patch) | |
| tree | 9925207e97b9e6e1fd83a55bdb878c43071cf73a /build.zig.zon | |
| download | aoc2025-516e6ed4a9066fa43d6159b2a0ec58416ab28013.tar.xz aoc2025-516e6ed4a9066fa43d6159b2a0ec58416ab28013.zip | |
solve up to day 7
Diffstat (limited to 'build.zig.zon')
| -rw-r--r-- | build.zig.zon | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/build.zig.zon b/build.zig.zon new file mode 100644 index 0000000..a373852 --- /dev/null +++ b/build.zig.zon @@ -0,0 +1,17 @@ +.{ + .name = .aoc2025, + .version = "0.0.0", + .fingerprint = 0x52176dd5bb600e94, // Changing this has security and trust implications. + .minimum_zig_version = "0.15.2", + .dependencies = .{ + .mecha = .{ + .url = "https://github.com/Hejsil/mecha/archive/refs/tags/0.11.0.tar.gz", + .hash = "mecha-0.11.0-dVGaSDNfAQA6B-SiB1TGG0HoOBdw1BFGMdQJV44pEgB4", + }, + }, + .paths = .{ + "build.zig", + "build.zig.zon", + "src", + }, +} |
