Initialize project using templates.
Prerequisites:
brew install git
)curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
)git clone git@github.com:ltoddy/fever.git && cargo install --path fever
)```shell $ mkdir rust-example && cd rust-example $ fever rust init --description "Just a rust project" $ tree . . ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── rust-toolchain ├── rustfmt.toml └── src └── main.rs
1 directory, 7 files ```
shell
$ fever rust new rust-example --description "Rust project"