This repository contains template code for a new rust project.
- To use this repository, clone it as a template.
- Add a new binary or library either using
cargo newor by manually creating a folder. - Add the name of the package to workspace's
Cargo.tomlunderworkspace.members.
More details about cargo workspace at https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html
- Important to replace the
LICENSEas per project requirement. - Edit the
READMEto show case project usage and features. - Basic CI pipeline using github actions can be found under
/github/rust.yml.