20 lines
283 B
Makefile
20 lines
283 B
Makefile
# Build the project.
|
|
build:
|
|
cargo build
|
|
|
|
# Run tests.
|
|
test:
|
|
cargo test
|
|
|
|
# Check for formatting and style issues.
|
|
lint:
|
|
cargo clippy
|
|
|
|
# Run cargo-deny to check for vulnerabilities and other issues.
|
|
deny:
|
|
cargo deny check
|
|
|
|
## Local Variables:
|
|
## mode: makefile
|
|
## End:
|