You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
328 B

default:
cargo build
readme:
grep -E '^//!' src/lib.rs | sed 's/\/\/!\s\?//g' > README.md
echo >> README.md
cat ROADMAP.md >> README.md
fmt:
cargo fmt --all
test:
cargo test --all-features
RUSTFLAGS="-Dwarnings" cargo clippy --all-targets --all-features
cargo fmt --all -- --check
bench:
cargo bench --all-features