1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
default: build all: test test: build cargo test build: cargo build fmt: cargo fmt --all lint: cargo clippy --all-targets --all-features -- -D warnings -A clippy::too-many-arguments -A clippy::type-complexity clean: cargo clean docs: cargo doc --no-deps --open publish: cargo publish