
Since we removed the direct2d renderer we no longer need to reference the direct2d-zig repository. Instead we now directly reference the zigwin32 repository. I've also updated that repository with a few fixes and additions which allowed us to remove some code from flow.
53 lines
2.4 KiB
Zig
53 lines
2.4 KiB
Zig
.{
|
|
.name = "flow",
|
|
.version = "0.2.0",
|
|
.minimum_zig_version = "0.13.0",
|
|
|
|
.dependencies = .{
|
|
.syntax = .{ .path = "src/syntax" },
|
|
.flags = .{
|
|
.url = "https://github.com/n0s4/flags/archive/b3905aa990719ff567f1c5a2f89e6dd3292d8533.tar.gz",
|
|
.hash = "1220930a42f8da3fb7f723e3ad3f6dcc6db76327dd8d26274566423192d53e91b2bb",
|
|
},
|
|
.tracy = .{
|
|
.url = "https://github.com/neurocyte/zig-tracy/archive/e04e31c64498149a324491b8534758e6af43a5c2.tar.gz",
|
|
.hash = "1220d0fb2bff7b453dbb39d1db3eb472b6680e2564f2b23b0e947671be47bbdd188f",
|
|
},
|
|
.dizzy = .{
|
|
.url = "https://github.com/neurocyte/dizzy/archive/455d18369cbb2a0458ba70be919cd378338d695e.tar.gz",
|
|
.hash = "1220220dbc7fe91c1c54438193ca765cebbcb7d58f35cdcaee404a9d2245a42a4362",
|
|
},
|
|
.thespian = .{
|
|
.url = "https://github.com/neurocyte/thespian/archive/d2b65df7c59b58f5e86b1ce3403cd3589d06a367.tar.gz",
|
|
.hash = "122040a2dcb9569ee26ae9c205f944db4ee9e3eb7c9d5ec610c7d84cf82ab6909fa9",
|
|
},
|
|
.themes = .{
|
|
.url = "https://github.com/neurocyte/flow-themes/releases/download/master-770924d1aba9cc33440b66e865bd4f7dca871074/flow-themes.tar.gz",
|
|
.hash = "12209c54177d215ecf7a5b7bf3c51be85ac3b3a451f9c2a58b8d4bbb378b45effbba",
|
|
},
|
|
.fuzzig = .{
|
|
.url = "https://github.com/fjebaker/fuzzig/archive/0fd156d5097365151e85a85eef9d8cf0eebe7b00.tar.gz",
|
|
.hash = "122019f077d09686b1ec47928ca2b4bf264422f3a27afc5b49dafb0129a4ceca0d01",
|
|
},
|
|
.vaxis = .{
|
|
.url = "https://github.com/neurocyte/libvaxis/archive/2483b4a6feb03c101afa12f8b269c95fbbce2652.tar.gz",
|
|
.hash = "1220e422e918e2eef937440ef68399a50dbaee84618f934870955d150e99812a34f0",
|
|
},
|
|
.zeit = .{
|
|
.url = "https://github.com/rockorager/zeit/archive/9cca8ec620a54c3b07cd249f25e5bcb3153d03d7.tar.gz",
|
|
.hash = "1220755ea2a5aa6bb3713437aaafefd44812169fe43f1da755c3ee6101b85940f441",
|
|
},
|
|
.win32 = .{
|
|
.url = "https://github.com/marlersoft/zigwin32/archive/259b6f353a48968d7e3171573db4fd898b046188.tar.gz",
|
|
.hash = "1220925614447b54ccc9894bbba8b202c6a8b750267890edab7732064867e46f3217",
|
|
.lazy = true,
|
|
},
|
|
},
|
|
.paths = .{
|
|
"include",
|
|
"src",
|
|
"test",
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
},
|
|
}
|