-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
54 lines (52 loc) · 2.04 KB
/
Copy pathbuild.zig.zon
File metadata and controls
54 lines (52 loc) · 2.04 KB
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
.{
.name = .eclipse,
.fingerprint = 0xbd5534bf7da310cf,
.version = "1.0.0",
.minimum_zig_version = "0.16.0",
.dependencies = .{
// shared deps
.ziggy = .{ .path = "ziggy" },
.shared = .{ .path = "shared" },
.tracy = .{
.url = "https://github.com/wolfpld/tracy/archive/refs/tags/v0.13.1.tar.gz",
.hash = "N-V-__8AAOncKwEm1F9c5LrT7HMNmRMYX8-fAoqpc6YyTu9X",
},
// client deps
.miniaudio = .{ .path = "client/libs/miniaudio" },
.stbi = .{ .path = "client/libs/stbi" },
.windy = .{
.url = "git+https://github.com/flut2/windy.git#9ebe6ae01e9e386678ce22c3cadf4affa94b8366",
.hash = "windy-0.3.1-wLI1BJH_AQA6QLCWMSG1Cr97ZjbZV_PfsNlAj3qSIelJ",
},
.msdf_zig = .{
.url = "git+https://github.com/flut2/msdf-zig.git#846cdd15cdf0b45f8bcb271910d49be9d0cad9f3",
.hash = "msdf_zig-1.0.0-5-oN4xLzBABO7Z77N6iSHi0oz1lNueZll8HlZ7fjYg8G",
},
.turbopack = .{
.url = "git+https://github.com/flut2/turbopack.git#90cc3da6bd6f4d5da142651b861a1c6834f3af9c",
.hash = "turbopack-1.0.0-rSxRjkcfAADwwnU2F77B91vY6wttplFZNVmhDG-mDeUi",
},
.vulkan_zig = .{
.url = "git+https://github.com/Snektron/vulkan-zig.git#b496a6a561ffbbeb530b0f9ed4e059f88c0723a5",
.hash = "vulkan-0.0.0-r7Ytx7N9AwD7IZt5_XNHtkJ4G9qY0pCH-cpcOsbL8wzD",
},
.vma = .{
.url = "https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator/archive/refs/tags/v3.3.0.tar.gz",
.hash = "N-V-__8AAIutPgABk6NlXZhlJ5P8qVECvakZIKoO94h7xUOw",
},
// server deps
.hiredis = .{
.url = "git+https://github.com/redis/hiredis.git#1d18adbf41dc10d456bee34a3fb966a2009c591c",
.hash = "N-V-__8AACdkCAB0LdDMFdlwQtyHsMtgrF5T70EEXMRhucj-",
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"LICENSE",
"client/",
"server/",
"shared/",
"ziggy/",
},
}