1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
all: regen format lint test docs regen: npm run build:rust format: cargo fmt lint: cargo clippy test: cargo test docs: cargo doc --no-deps clean: cargo clean