.PHONY: all test doc clean all: cargo build cargo run test: # runs the unit test suite cargo test doc: # generates the documentation cargo doc clean: cargo clean