Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skunkwerks/zamqp
zig wrapper around rabbitmq-c
https://github.com/skunkwerks/zamqp
Last synced: about 2 months ago
JSON representation
zig wrapper around rabbitmq-c
- Host: GitHub
- URL: https://github.com/skunkwerks/zamqp
- Owner: skunkwerks
- License: bsd-2-clause
- Created: 2020-12-19T08:55:58.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-25T13:33:57.000Z (almost 4 years ago)
- Last Synced: 2024-08-04T01:04:51.363Z (5 months ago)
- Language: Zig
- Size: 17.6 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
zamqp is a Zig wrapper around [rabbitmq-c](https://github.com/alanxz/rabbitmq-c).
## Setup
1. Install `librabbitmq`.
2. Add the following to your `build.zig` (you may need to adjust the path):
```zig
step.linkLibC();
step.linkSystemLibrary("rabbitmq");
step.addPackagePath("zamqp", "../zamqp/src/zamqp.zig");
```
3. Import with `@import("zamqp")`.