Skip to content

jiacai2050/zig-curl

Repository files navigation

zig-curl

https://img.shields.io/badge/zig%20version-0.14.0-blue.svg https://img.shields.io/badge/zig%20version-master-blue.svg https://github.com/jiacai2050/zig-curl/actions/workflows/CI.yml/badge.svg https://ci.codeberg.org/api/badges/13257/status.svg

Zig bindings for libcurl, a free and easy-to-use client-side URL transfer library.

This package is in early stage, although the core functionality works right now, the API is still subject to changes.

The vendored libraries consist of:

LibraryVersion
libcurl8.8.0
zlib1.3.1
mbedtls3.6.0

Usage

const std = @import("std");
const curl = @import("curl");

pub fn main() !void {
    var gpa = std.heap.GeneralPurposeAllocator(.{}){};
    defer if (gpa.deinit() != .ok) @panic("leak");
    const allocator = gpa.allocator();

    const ca_bundle = try curl.allocCABundle(allocator);
    defer ca_bundle.deinit();
    const easy = try curl.Easy.init(.{
        .ca_bundle = ca_bundle,
    });
    defer easy.deinit();

    var writer = curl.ResizableResponseWriter.init(allocator);
    defer writer.deinit();
    const resp = try easy.fetch("https://httpbin.org/anything", .{
        .response_writer = writer.asAny(),
    });

    std.debug.print("Status code: {d}\nBody: {s}\n", .{
        resp.status_code,
        writer.asSlice(),
    });
}

See examples/basic.zig, examples/advanced.zig for more usage.

Installation

zig fetch --save=curl  https://github.com/jiacai2050/zig-curl/archive/refs/tags/${TAG}.zip

The latest tag can be found on release page.

After fetch, import curl like this in your build.zig:

const dep_curl = b.dependency("curl", .{});
exe.root_module.addImport("curl", dep_curl.module("curl"));
exe.linkLibC();

This library will link to a vendored libcurl by default, you can disable it and link to system-wide with this

const dep_curl = b.dependency("curl", .{ .link_vendor = false });
exe.linkSystemLibrary("curl");
exe.linkLibC();

License

MIT