From 0fe32ca1245e523ee3fae74828525eb37613ec9d Mon Sep 17 00:00:00 2001 From: Nathan Fisher Date: Tue, 13 Jun 2023 01:46:34 -0400 Subject: [PATCH] Renamed library to chrono --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 70d52ce..04ceb75 100644 --- a/build.zig +++ b/build.zig @@ -5,7 +5,7 @@ pub fn build(b: *std.build.Builder) void { // between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. const mode = b.standardReleaseOptions(); - const lib = b.addStaticLibrary("zigDateTime", "src/main.zig"); + const lib = b.addStaticLibrary("chrono", "src/main.zig"); lib.setBuildMode(mode); lib.install();