Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 369 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 369 Bytes

zamqp is a Zig wrapper around rabbitmq-c.

Setup

  1. Install librabbitmq.
  2. Add the following to your build.zig (you may need to adjust the path):
    step.linkLibC();
    step.linkSystemLibrary("rabbitmq");
    step.addPackagePath("zamqp", "../zamqp/src/zamqp.zig");
  3. Import with @import("zamqp").