diff --git a/README.md b/README.md index 0066b54..39189d7 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ ![](_logo/syslogzig-removebg.png) -# ziglog +# syslog -[![CI](https://github.com/g41797/ziglog/actions/workflows/ci.yml/badge.svg)](https://github.com/g41797/ziglog/actions/workflows/ci.yml) +[![CI](https://github.com/g41797/syslog/actions/workflows/ci.yml/badge.svg)](https://github.com/g41797/syslog/actions/workflows/ci.yml) WIP diff --git a/_notes.txt b/_notes.txt index 9e68b56..3e1581e 100644 --- a/_notes.txt +++ b/_notes.txt @@ -301,7 +301,7 @@ Get a tarball of any repo directly zig build test -freference-trace --summary all IDE: - /usr/bin/zig test --color on /home/g41797/CLionProjects/github.com/g41797/ziglog/src/root.zig -O Debug + /usr/bin/zig test --color on /home/g41797/CLionProjects/github.com/g41797/syslog/src/root.zig -O Debug /usr/bin/zig build test --color on $PWD/src/root.zig -O Debug -freference-trace --summary all diff --git a/build.zig b/build.zig index 9e7d79a..f212ee9 100644 --- a/build.zig +++ b/build.zig @@ -16,7 +16,7 @@ pub fn build(b: *std.Build) void { const optimize = b.standardOptimizeOption(.{}); const lib = b.addStaticLibrary(.{ - .name = "ziglog", + .name = "syslog", // In this case the main source file is merely a path, however, in more // complicated build scripts, this could be a generated file. .root_source_file = b.path("src/root.zig"), diff --git a/build.zig.zon b/build.zig.zon index c80faf6..a5f5826 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -6,7 +6,7 @@ // // It is redundant to include "zig" in this name because it is already // within the Zig package namespace. - .name = "ziglog", + .name = "syslog", // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication.