This project requires the following tools installed:
- :simple-rust: rust
- :simple-uv:
uv(Python Project management tool) - :simple-nushell: nushell (for running tasks via
nur)
After checking out the repo locally, use
uv syncThis creates a venv at ".venv/" in repo root (if it doesn't exist).
It also installs dev dependencies like pre-commit, ruff, and mypy.
See uv sync docs
for more detailed usage.
Tip
To register the pre-commit hooks, use:
uv run pre-commit installFirst ensure that the following cargo-managed binaries are installed:
cargo-llvm-covcargo-nextestUsenurto run tests:
nur testDifferent test profiles are still defined in .config/nextest.toml. The above command uses the "default" profile, but to mimic the CI, use:
nur test --profile ciTo generate a coverage report:
nur test llvm-cov --openThe --open flag is optional. It opens the built coverage report in your default browser.
The uploaded codecov report is generated with
nur test lcovTo view the docs locally, use
nur docs --openThe --open flag is optional. It opens the built docs in your default browser.
In CI, docs are built using
nur docs --build