atproto utils for zig
zat.dev
atproto
sdk
zig
1# zat
2
3# show available commands
4default:
5 @just --list
6
7# format code
8fmt:
9 zig fmt .
10
11# check formatting (CI)
12check:
13 zig fmt --check .
14
15# run tests
16test:
17 zig build test --summary all -freference-trace
18
19# run CBOR codec benchmarks
20bench:
21 zig build bench -Doptimize=ReleaseFast