list:
just --list
format:
cargo fmt
build:
cargo build --all-features
test:
cargo test --all-features
miri:
cargo +nightly miri test
clippy:
cargo clippy --all-features
cargo clippy --tests --all-features
checks:
just format
just build
just clippy
just test
just miri
clean:
find . -name target -type d -exec rm -r {} +
just remove-lockfiles
remove-lockfiles:
find . -name Cargo.lock -type f -exec rm {} +
list-outdated:
cargo outdated -R
update:
cargo update --aggressive
publish:
cargo publish --no-verify