1all: build test 2 3build: 4 @cargo build 5 6check: 7 @cargo check 8 9doc: 10 @cargo doc 11 12test: 13 @cargo test 14 @cargo test --all-features 15 16format: 17 @rustup component add rustfmt 2> /dev/null 18 @cargo fmt --all 19 20format-check: 21 @rustup component add rustfmt 2> /dev/null 22 @cargo fmt --all -- --check 23 24lint: 25 @rustup component add clippy 2> /dev/null 26 @cargo clippy 27 28.PHONY: all check doc test format format-check lint 29