Manual installation
While it is recommended to use the CLI tool to create and manage Maudit projects, it is also possible to manually install Maudit like any other Rust library.
Create a new Rust project using Cargo, specifying the --bin
flag to create a binary project:
cargo new my-website --bin
cd my-website
Next, add Maudit as a dependency in your Cargo.toml
file, or run cargo add maudit
to do so automatically:
[dependencies]
maudit = "0.1"
Voilà! You can now use Maudit in your project. Check out the rest of the documentation for more information on how to use Maudit, or if you prefer jumping straght into the code, take a look at the examples and the API documentation.