We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15c4eee commit 2c1ae54Copy full SHA for 2c1ae54
.github/workflows/ci.yml
@@ -26,7 +26,7 @@ jobs:
26
run: zig fmt . --check
27
28
- name: Run tests
29
- run: zig build test
+ run: zig build test --summary all
30
31
- name: Run example
32
run: zig build run-example
README.md
@@ -1,6 +1,6 @@
1
# clock.zig
2
3
-A small beacon-style slot clock library in Zig.
+A beacon slot clock in Zig.
4
5
## Build and Run
6
@@ -26,10 +26,6 @@ zig build run-example
4. Wait API:
- `waitForSlot(target)` returns when `currentSlot() >= target`.
- Abort wakes waiters and returns `error.Aborted`.
-5. Time model:
- - Public time inputs are milliseconds (`u64`).
- - `Slot` and `Epoch` are `u64`.
- - Time arithmetic reports `error.Overflow` on overflow.
33
34
## Testing
35
0 commit comments