.PHONY: build release test lint fmt fmt-check clean install
build:
cargo build
release:
cargo build --release
test:
cargo test
lint:
cargo clippy -- -D warnings
fmt:
cargo fmt
fmt-check:
cargo fmt --check
clean:
cargo clean
install:
cargo install --path .