14 lines
187 B
Makefile
14 lines
187 B
Makefile
check:
|
|
cargo check
|
|
cargo fmt --check
|
|
cargo clippy --no-deps
|
|
|
|
lint-fix:
|
|
cargo clippy --no-deps --fix
|
|
|
|
release:
|
|
cargo build --release
|
|
|
|
test:
|
|
cargo test --lib --bins
|