zaye/build.zig.zon
torque 6ebd51756d
init
handroll some libyaml bindings.

I was originally going to use yaml-cpp, but C++ sucks tremendously and
looking at the libyaml documentation, the event-based parser API
probably works the way I want it to so let's try it out.
2024-03-05 22:37:51 -08:00

16 lines
305 B
Zig

.{
.name = "libyaml.zig",
.version = "0.0.1",
.paths = .{
"src",
"deps/libyaml/src",
"deps/libyaml/include",
"deps/libyaml/License",
"build.zig",
"build.zig.zon",
"libyaml.build.zig",
"LICENSE",
},
.dependencies = .{},
}