| author | |
| committer | |
| log | 0f4db4c980146e4a3fc86a9a9070452a25ff9317 |
| tree | 6f9706693d395500d813ffb62fa98940bbf584e1 |
| parent | 6e4e3983cea4fe7f705ce6c6606832fca409a4c7 |
| signature |
3 files changed, 3 insertions(+), 0 deletions(-)
licenses.txt+1| ... | ... | @@ -3,6 +3,7 @@ MIT: |
| 3 | 3 | - This |
| 4 | 4 | - git https://github.com/nektro/zig-expect |
| 5 | 5 | - git https://github.com/nektro/zig-extras |
| 6 | - git https://github.com/nektro/zig-sys-darwin | |
| 6 | 7 | - git https://github.com/nektro/zig-sys-linux |
| 7 | 8 | |
| 8 | 9 | Unspecified: |
time.zig+1| ... | ... | @@ -7,6 +7,7 @@ const time = @This(); |
| 7 | 7 | |
| 8 | 8 | const sys = switch (builtin.target.os.tag) { |
| 9 | 9 | .linux => sys_linux, |
| 10 | .macos => @import("sys-darwin"), | |
| 10 | 11 | else => unreachable, // TODO: |
| 11 | 12 | }; |
| 12 | 13 |
zig.mod+1| ... | ... | @@ -7,5 +7,6 @@ min_zig_version: 0.11.0-dev.1681+0bb178bbb |
| 7 | 7 | dependencies: |
| 8 | 8 | - src: git https://github.com/nektro/zig-extras |
| 9 | 9 | - src: git https://github.com/nektro/zig-sys-linux |
| 10 | - src: git https://github.com/nektro/zig-sys-darwin | |
| 10 | 11 | root_dependencies: |
| 11 | 12 | - src: git https://github.com/nektro/zig-expect |