lishaduck/zig-curl
https://github.com/mattnite/zig-libcurl rewritten
cURL packaged for Zig.
zig fetch --save 'git+https://github.com/lishaduck/zig-curl#8.13.0'
This will add a dependency entry to your build.zig.zon
.
Then, to link cURL, add this to your build.zig
:
const curl = b.dependency("curl", .{});
module.linkLibrary(curl.artifact("curl"));