Files
zlog/build.zig.zon
Yves Biener df515b8cad
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 57s
mod: remove dependency to c std library and replace with ztime dependency for a pure zig implementation
2024-11-30 14:45:57 +01:00

20 lines
597 B
Zig

.{
.name = "zlog",
// version name should match the zig version except for the last number,
// which stands for the version inside a given zig version
.version = "0.13.0",
.dependencies = .{
.ztime = .{
.url = "git+https://gitea.yves-biener.de/yves-biener/ztime#c0f370c1c4673bb5f1fc1a1266e9819bafec0082",
.hash = "1220f094aa3a4e38ed4140da594e9eae3a3d66e7ba5eb3ea3f6fb7ed561d6981c6be",
},
},
.minimum_zig_version = "0.13.0",
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"LICENSE",
},
}