I'm trying to update some existing code for the latest master. It tries to create a package, but am not sure what the new (module?) syntax should be?
https://github.com/ringtailsoftware/zig-embeddir/blob/main/build.zig#L22
options.addOption([]const []const u8, "files", files.items);
var pkg = std.build.Pkg{
.name = "assets",
.source = options.getSource(),
};
exe.addPackage(pkg);