Cargo extension to help create, manage, and test RISC Zero projects. The default template generated from the cargo risczero new
command supports both local and remote proving. Refer to the README in the rust-starter template for more information.
```bash
cargo install cargo-risczero
cargo install --path risc0/cargo-risczero ```
The new
command will create a new project for an existing template. It defaults to the template at rust-starter but can be used with other templates locally or hosted on github.
```bash
cargo risczero new my_project
cargo risczero new my_project --std
cargo risczero new my_project --no-git
cargo risczero new my_project --template https://github.com/risc0/risc0-rust-starter ```