# Package not ready for stable. build: # ... build ... cargo +nightly build # cargo +stable build # ... test ... cargo +nightly test --no-run # cargo +stable test --no-run # ... bench ... cargo +nightly bench --no-run # cargo +stable bench --no-run # ... doc ... cargo +nightly doc # cargo +stable doc # ... meta commands ... cargo +nightly clippy --all-targets --all-features flamegraph: cargo flamegraph --features=perf --release --bin=perf -- --loads 10000000 --gets 10000000 --threads 16 prepare: check.sh perf.sh clean: rm -f check.out perf.out flamegraph.svg perf.data perf.data.old