mirror of
https://github.com/ow-mods/ow-mod-man.git
synced 2025-12-11 20:15:50 +01:00
555 B
555 B
Contributing
To build this project you'll need rust and cargo.
This package is called owmods_cli so anytime you want to perform cargo commands on it do not do it in this folder, do it from the root of the repo and add -p owmods_cli to your cargo command.
Ex: cargo add clap should become cargo add clap -p owmods_cli.
Formatting & Linting
Please format and lint your code before pushing:
cargo fmt
cargo clippy --all-targets -- -D warnings
Git hooks are setup to run clippy on every commit, meaning they may take longer.