mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 13:39:12 +00:00
24 lines
410 B
Makefile
24 lines
410 B
Makefile
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
|
|
|
|
fuzz:
|
|
cargo fuzz run yata -- -max_total_time=300 -max_len=4000 -jobs=2
|
|
|
|
flame:
|
|
cargo flamegraph --example test --features=fuzzing --root
|