Contributing to fastCRW
August 18, 2026 · View on GitHub
Contributions are welcome — issues and PRs both.
Contributor License Agreement
On your first pull request a bot will ask you to sign our Contributor License Agreement. It takes one comment and covers all of your future contributions. We can't merge PRs until it's signed.
Development setup
Requires rustc 1.85 or newer (the workspace uses edition = "2024", which
1.85 is the first stable toolchain to support). There is no pinned
rust-toolchain.toml; install a recent stable toolchain via
rustup and rustup update if cargo build reports an
edition error.
- Fork the repository
- Install pre-commit hooks:
make hooks - Create a feature branch:
git checkout -b feat/my-feature - Commit your changes:
git commit -m 'feat: add my feature' - Push and open a Pull Request
The pre-commit hook runs fmt, clippy, the browser-teardown guard, and the full test suite. For the complete CI-equivalent check (including the release guard scripts and documentation drift checks), run:
make check-fast # fmt + clippy only, fast inner loop
make check # everything CI's `check` job runs, plus drift checks
Architecture
The workspace has 11 crates under crates/. The authoritative crate table
and dependency graph live in
docs.fastcrw.com/architecture/
(source: docs/docs/architecture.md) - read that instead of a copy here, so
this file cannot go stale when a crate is added or removed.
Documentation
Before editing anything under docs/, read docs/AGENTS.md
first: it explains which files are authored source and which are generated
output, and hand-editing the wrong one gets silently overwritten.


