1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# POSIX-compatible Makefile for metadata-gen
# Works on macOS, Linux, and WSL without modification.
#
# Usage:
# make — run check + clippy + test (default)
# make test — run all tests (all features)
# make clippy — run clippy lints, warnings denied
# make fmt — check formatting
# make lint — docs lint: markdownlint + codespell + REUSE
# make deny — cargo-deny supply-chain checks
# make vet — cargo-vet provenance check (--locked)
# make audit — cargo-audit advisory check
# make doc — build documentation with warnings denied
# make coverage — line/function coverage via cargo-llvm-cov (nightly)
# make miri — run the lib test suite under Miri (nightly)
# make fuzz — build every fuzz target and replay the corpus (nightly)
# make examples — run every example to completion
# make bench-smoke — compile and run each bench once, no measurement
# make versions — every version-bearing file agrees with Cargo.toml
# make sbom — generate a software bill of materials
# make clean — remove build artifacts
:
:
:
:
:
:
# Docs lint: structure only for Markdown, British spellings allowed,
# REUSE 3.3 compliance. `reuse` runs through uvx so the gate does not
# depend on a system Python install.
:
:
:
:
:
# Coverage as CI measures it. The gate is 98 % lines; the rationale is
# in DEVELOPMENT.md.
:
:
# Build every target, then replay the seed corpus and the regression
# inputs without generating new ones. Mirrors the per-push CI gate.
:
:
:
:
:
: