all: check build test
check:
cargo clippy --all-targets -- -Dwarnings
# cargo deny check -Dwarnings
build:
cargo build --all-targets
test: build
cargo test