-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.zig.zon
38 lines (38 loc) · 1.62 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
.{
.name = "goku",
.version = "0.0.3",
.dependencies = .{
.clap = .{
.url = "git+https://github.com/Hejsil/zig-clap#e9207ad2b86131fa9f0dfbd5c68cafd67f00fe64",
.hash = "1220cb2f28680ef73c1020bfd8c7b08de38821b0bc19b5469f60dcf813f1d8455dbd",
},
.@"custom-test-runner" = .{ .path = "./modules/custom-test-runner" },
.bulma = .{ .path = "./modules/bulma" },
.htmx = .{ .path = "./modules/htmx" },
.lucide = .{ .path = "./modules/lucide" },
.md4c = .{ .path = "./modules/md4c" },
.mustach = .{ .path = "./modules/mustach" },
.quickjs = .{ .path = "./modules/quickjs" },
.sqlite = .{
.url = "git+https://github.com/vrischmann/zig-sqlite#7d50331972777727d0a22f5e4a51e8a06c410bad",
.hash = "1220f01a534f84839a66b127b88183bd81f6ab3778289150aa79f83ae126e4a8e0df",
},
.tracy = .{
// Point back to cipharius/zig-tracy once it's been updated to support Zig 0.13
.url = "https://github.com/kcbanner/zig-tracy/archive/40ad7b4c7976dcd94b2f3a89470b2e84d42b7b8c.tar.gz",
.hash = "1220847a8e1395c15ac39e200227a1f102c5a93be2ef12528d4ff97dd79ce164906a",
//.path = "../modules/zig-tracy",
},
.yaml = .{ .path = "./modules/yaml" },
.zap = .{
.url = "git+https://github.com/zigzap/zap#29b923f96ee09d855b603866d2e149d506f72679",
.hash = "1220399fcdfff1fd73f8cbced2530ab805391f31d8c188db99ae7ba978dd77fd2814",
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"modules",
},
}