Thanks to visit codestin.com
Credit goes to lib.rs

MaxRects is both an executable binary that can be run, and a library that can be used in Rust programs.

Installing the command-line executable

Assuming you have Rust/Cargo installed, run this command in a terminal:

cargo install max_rects

It will make the max_rects command available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall max_rects uninstalls.

Adding max_rects library as a dependency

Run this command in a terminal, in your project's directory:

cargo add max_rects

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

max_rects = "1.0.2"

The max_rects library will be automatically available globally. Read the max_rects library documentation.

Back to the crate overview.