From 372738e03e690e26e43c9040c401c798324c8ca8 Mon Sep 17 00:00:00 2001 From: Pascal Zittlau Date: Fri, 24 Oct 2025 14:13:37 +0200 Subject: [PATCH] readme update --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 90914b6..c326bc5 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,24 @@ # faller -Small logging library. \ No newline at end of file +Small logging library. + +## Installation + +Run: +```bash +zig fetch --save git+https://git.pascalzittlau.de/pzittlau/faller.git +``` + +Then put this in `build.zig`: +```zig +const faller = b.dependency("faller", .{ + .target = target, + .optimize = optimize, + // Other options +}); +mod.addImport("faller", faller.module("faller")); +``` + +## License + +Apache 2.0