About cargo fmt

We have only partially implemented the format checking, but you can check your project with `cargo fmt --check`. See open issue.

fmt

rustfmt is the de-facto standard to format Rust code. You can install it by running the following command: `rustup component add rustfmt`. The you can run it on your source code with `cargo fmt`.

We are going to run `cargo fmt --check` on every Rust crate an display the report here.

We will provide suggestions how to configure the formatter either in the rustfmt.toml or .rustfmt.toml file.

We will have recommendations on how to set up Continuous integration to verify that the code is well formatted.

We will have recommendations on how to add a pre-commit hook to ensure the files are always formatted according to the rules of the project.