diff --git a/README.md b/README.md index f5d7863..a1537ba 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ zig build test ```sh # With Zig installed: -zigup build docs && cp -a zig-out/docs/. docs/ +zig build docs && cp -a zig-out/docs/. docs/ # Alternatively, using Zigup: zigup run build docs && cp -a zig-out/docs/. docs/ diff --git a/build.zig.zon b/build.zig.zon index 66a3e9f..26e0a5a 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,8 +1,8 @@ .{ .name = .ziglangSet, - .version = "0.0.1", + .version = "0.1.0", .fingerprint = 0x65aa5acd2ef4855, - .minimum_zig_version = "0.15.1", + .minimum_zig_version = "0.16.0", .dependencies = .{}, @@ -10,10 +10,8 @@ "LICENSE", "build.zig", "build.zig.zon", - "src/array_hash_set/managed.zig", - "src/array_hash_set/unmanaged.zig", - "src/hash_set/managed.zig", - "src/hash_set/unmanaged.zig", + "src/hash_set.zig", + "src/array_hash_set.zig", "src/root.zig", }, } diff --git a/docs/index.html b/docs/index.html index e60a3f9..75c0daf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -40,6 +40,15 @@ code a { color: #000000; } + .source-code { + display: grid; + grid-template-columns: auto 1fr; + align-items: start; + } + .source-line-numbers pre { + text-align: right; + color: #666; + } #listFields > div, #listParams > div { margin-bottom: 1em; } @@ -429,7 +438,14 @@

Example Usage