-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
55 lines (52 loc) · 2.4 KB
/
build.zig.zon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.{
// This is the default name used by packages depending on this one. For
// example, when a user runs `zig fetch --save <url>`, this field is used
// as the key in the `dependencies` table. Although the user can choose a
// different name, most users will stick with this provided value.
//
// It is redundant to include "zig" in this name because it is already
// within the Zig package namespace.
.name = "zig-invaders",
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "1.1.0",
// This field is optional.
// This is currently advisory only; Zig does not yet do anything
// with this value.
.minimum_zig_version = "0.13.0",
// This field is optional.
// Each dependency must either provide a `url` and `hash`, or a `path`.
// `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
// Once all dependencies are fetched, `zig build` no longer requires
// internet connectivity.
.dependencies = .{
.entt = .{
.url = "git+https://github.com/prime31/zig-ecs.git#b47670da5fc32ec200d63bb0b0a6c93640fca602",
.hash = "1220949709178b133c4d7f6ddf87fa575a9f2e9afe545a39aafdc8c89e6abbe83412",
},
.@"raylib-zig" = .{
.url = "git+https://github.com/Not-Nik/raylib-zig.git#f26b2ab084be5e2840b7451818590cc512b7b972",
.hash = "1220fc554f109a45a77ee5c58b4a847936dc0b24dcbed818b65a02de1b58500041dc",
},
.zalgebra = .{
.url = "git+https://github.com/kooparse/zalgebra.git#e36116987d11c4a28ab8a03ab62d71be8b81404a",
.hash = "12200e1b17e15217623e36563e459164fff4debb8210ea9d027d8548aca6d30f0811",
},
.zemscripten = .{
.url = "git+https://github.com/stefanpartheym/zemscripten.git#bd5110efc9a52c0ea45a1947951e09aa80afaba4",
.hash = "1220c0281da2e7bfc0f7caba4f47ad025e2c93b877de599870a3289a7b116ac6441b",
},
.emsdk = .{
.url = "git+https://github.com/emscripten-core/emsdk?ref=3.1.70#2514ec738de72cebbba7f4fdba0cf2fabcb779a5",
.hash = "12203d37f4492c950b6a30710844d6896fbeffc9bc6e70bffef6f702f7c5bc9849f0",
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"assets",
"screenshot.png",
"README.md",
},
}