all: check test export RUSTFLAGS=-Dwarnings doc: fmt cargo test --doc cargo doc --open test: fmt cargo test check: fmt cargo check watch: cargo watch --clear --watch-when-idle --shell '$(MAKE)' watch-doc: cargo +nightly watch --clear --watch-when-idle --shell '$(MAKE) doc' fmt: cargo fmt --all readme: cargo readme > README.md clean: cargo clean