tensorush/zig-cookie
Zig port of cookie library for HTTP cookie storage.
cookie
dependency to build.zig.zon
.zig fetch --save git+https://github.com/tensorush/zig-cookie#<git_tag_or_commit_hash>
cookie
dependency in build.zig
.const cookie_dep = b.dependency("cookie", .{
.target = target,
.optimize = optimize,
});
const cookie_mod = cookie_dep.module("cookie");
<compile>.root_module.addImport("cookie", cookie_mod);