2021-03-30 04:32:22 +02:00
|
|
|
[alias]
|
2021-11-22 02:19:09 +01:00
|
|
|
lint = "clippy --workspace --tests --examples --bins -- -Dclippy::todo"
|
|
|
|
lint-all = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy::todo"
|
|
|
|
|
|
|
|
# lib checking
|
|
|
|
ci-check-min = "hack --workspace check --no-default-features"
|
|
|
|
ci-check-default = "hack --workspace check"
|
2021-12-05 04:38:08 +01:00
|
|
|
ci-check-default-tests = "check --workspace --tests"
|
2022-02-01 03:35:05 +01:00
|
|
|
ci-check-all-feature-powerset="hack --workspace --feature-powerset --skip=__compress,experimental-io-uring check"
|
2021-11-22 02:19:09 +01:00
|
|
|
ci-check-all-feature-powerset-linux="hack --workspace --feature-powerset --skip=__compress check"
|
2021-10-20 23:32:05 +02:00
|
|
|
|
2021-11-22 02:19:09 +01:00
|
|
|
# testing
|
2021-12-05 04:38:08 +01:00
|
|
|
ci-doctest-default = "test --workspace --doc --no-fail-fast -- --nocapture"
|
2021-11-22 02:19:09 +01:00
|
|
|
ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture"
|
2022-02-01 03:35:05 +01:00
|
|
|
|
|
|
|
# compile docs as docs.rs would
|
|
|
|
# RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace
|