A Cargo plugin to help setup and prepare a Crate before publishing.
It reads your cargo.toml file and based on the values not present it will either set defaults or prompt you for input.
Some of the prompts will be required and others optional.
Git is required to be installed as tool uses the command line to run git
commands.
```sh cargo install cargo-prepublish
cargo prepublish
cargo prepublish -n
cargo prepublish --non-interactive
cargo prepublish -v
cargo prepublish --valid ```
It checks the following * categories: If it doesn't exists then an empty array is added with a comment to the docs * description * documentation (Optional) Crates.io will link it to docs.rs automatically * homepage: Uses git repo as the default if not set or entered * keywords: At least one keyword needs to be entered. Default is the package name * license and license-file: The default is license MIT OR Apache 2.0 * readme: Will first look for an existing one and if not, then one will be generated * repository: Will extract for git if a valid git repo * authors: Optional
Any contributions are welcome. If you find a bug, have a suggestion or feature request, please open a issue.