cargo-rebuild 0.1.0

A cargo subcommand to clean the project, then build it
1
2
3
4
5
6
7
8
9
10
11
# cargo-rebuild
cargo-rebuild is a Cargo subcommand which forces a rebuild of the project.

### implementation
behind the scenes, it just calls `cargo clean` and then `cargo build`.

### installation
`cargo install cargo-rebuild`

### usage
`cargo rebuild`