loro/justfile

19 lines
305 B
Makefile
Raw Normal View History

2022-07-20 16:39:19 +00:00
build:
cargo build
test *FLAGS:
2022-08-11 12:12:47 +00:00
RUST_BACKTRACE=full cargo nextest run {{FLAGS}}
2022-07-20 16:39:19 +00:00
# test without proptest
test-fast:
RUSTFLAGS='--cfg no_proptest' cargo nextest run
2022-07-25 05:00:22 +00:00
check-unsafe:
env RUSTFLAGS="-Funsafe-code --cap-lints=warn" cargo check
deny:
cargo deny check
crev:
cargo crev crate check