To build slice-rust you must have Rust and Cargo installed. To install these, we recommend reading the following guide.
Run the following command to build slice-rust and its dependencies:
cargo buildRun the following command to run the test suite:
cargo testTo generate documentation for slice-rust, run the following command:
cargo doc --no-deps --document-private-itemsThis will generate documentation in the target/doc/ directory.
Additionally, you can easily view the documentation after generating it with the open flag:
cargo doc --no-deps --document-private-items --open