cargo_husky
Run this command in a terminal, in your project"s directory:
cargo add --dev cargo-husky
to add it a dev dependency (if it"s used only in tests, not in the final product). To add it as a regular run-time dependency, run:
cargo add cargo-husky
To add it manually, edit your project"s Cargo.toml file and add to the [dependencies] section:
Cargo.toml
[dependencies]
cargo-husky = "1.5.0"
The cargo_husky library will be automatically available globally. Read the cargo_husky library documentation.
Back to the crate overview.