Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 539 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 539 Bytes

picohttpparser

This is picohttpparser packaged for Zig

Installation

Use zig fetch:

zig fetch --save git+https://github.com/allyourcodebase/picohttpparser#master

You can then import picohttpparser in your build.zig:

const picohttpparser = b.dependency("picohttpparser", .{
    .target = target,
    .optimize = optimize,
});

your_exe.addIncludePath(picohttpparser.path("."));
your_exe.linkLibrary(picohttpparser.artifact("picohttpparser"));