chore: add zig module

This commit is contained in:
Rekai Nyangadzayi Musuka 2023-04-18 01:02:21 -05:00
parent 7882924179
commit a61caad235
3 changed files with 5 additions and 2 deletions

View File

@ -26,7 +26,7 @@ const StringContext = struct {
}
};
test {
test {
const Pair = StringTrie.Pair;
const allocator = std.testing.allocator;

View File

@ -15,6 +15,9 @@ pub fn build(b: *std.Build) void {
// set a preferred release mode, allowing the user to decide how to optimize.
const optimize = b.standardOptimizeOption(.{});
const module = b.addModule("hamt", .{ .source_file = .{ .path = "src/lib.zig" } });
_ = module;
const lib = b.addStaticLibrary(.{
.name = "hamt",
// In this case the main source file is merely a path, however, in more

View File

@ -1,5 +1,5 @@
.{
.name = "hamt",
.version = "0.0.1",
.version = "0.1.0",
.dependencies = .{},
}