loro/crates/loro-core/justfile

25 lines
387 B
Makefile
Raw Normal View History

2022-07-26 18:24:25 +00:00
build:
cargo build
test:
cargo nextest run
# test without proptest
test-fast:
RUSTFLAGS='--cfg no_proptest' cargo nextest run
check-unsafe:
env RUSTFLAGS="-Funsafe-code --cap-lints=warn" cargo check
deny:
cargo deny check
crev:
cargo crev crate check
2022-10-13 06:49:58 +00:00
fuzz:
cargo fuzz run yata -- -max_total_time=60
flame:
cargo flamegraph --example test --features=fuzzing --root