2022-07-20 16:39:19 +00:00
|
|
|
build:
|
|
|
|
cargo build
|
|
|
|
|
2022-08-10 16:43:47 +00:00
|
|
|
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
|
2022-08-12 11:06:13 +00:00
|
|
|
test-fast *FLAGS:
|
2022-09-08 10:24:19 +00:00
|
|
|
RUSTFLAGS='--cfg no_proptest' cargo nextest run {{FLAGS}}
|
2022-08-12 11:06:13 +00:00
|
|
|
|
|
|
|
# test with slower proptest
|
|
|
|
test-slow *FLAGS:
|
|
|
|
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"
|
|
|
|
|
|
|
|
|