Development guide

Work in progress …

Justfile

We utilize just to provide additional functionality for the development process.

Installation

Install just with:

cargo install just --locked

or by using scoop:

scoop install just

Development dependencies

After you hav installed just, you can install the development dependencies with:

just install-dev-deps

Building the project

You can build the project with:

cargo build

Running the tests

You can run the tests with:

just test

Formatting the code

You can format the code with:

just fmt

Linting the code

You can lint the code with:

just lint
Last change: 2024-03-20, commit: 3ad6fe0