loro/justfile

34 lines
641 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
2022-09-09 15:31:49 +00:00
# test with proptest
test-prop *FLAGS:
RUST_BACKTRACE=full RUSTFLAGS='--cfg proptest' cargo nextest run {{FLAGS}}
2022-08-12 11:06:13 +00:00
# test with slower proptest
2022-09-09 15:31:49 +00:00
test-slowprop *FLAGS:
RUST_BACKTRACE=full RUSTFLAGS='--cfg slow_proptest' cargo nextest run {{FLAGS}}
2022-07-25 05:00:22 +00:00
check-unsafe:
env RUSTFLAGS="-Funsafe-code --cap-lints=warn" cargo check
2022-09-01 17:14:39 +00:00
fix:
cargo clippy --fix
2022-07-25 05:00:22 +00:00
deny:
cargo deny check
crev:
cargo crev crate check
2022-08-12 12:46:38 +00:00
bench-rle:
cd crates/rle
cargo build --release --examples
cd ../..
hyperfine --warmup=3 "./target/release/examples/string_tree_bench"