2021-03-30 14:39:10 +02:00
|
|
|
[alias]
|
2021-11-02 00:36:51 +01:00
|
|
|
lint = "clippy --workspace --tests --examples --bins -- -Dclippy::todo"
|
|
|
|
lint-all = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy::todo"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# just check the library (without dev deps)
|
|
|
|
ci-check-min = "hack --workspace check --no-default-features"
|
2023-12-06 05:04:39 +01:00
|
|
|
ci-check-lib = "hack --workspace --feature-powerset --depth=2 --exclude-features=io-uring check"
|
|
|
|
ci-check-lib-linux = "hack --workspace --feature-powerset --depth=2 check"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# check everything
|
2023-12-06 05:04:39 +01:00
|
|
|
ci-check = "hack --workspace --feature-powerset --depth=2 --exclude-features=io-uring check --tests --examples"
|
|
|
|
ci-check-linux = "hack --workspace --feature-powerset --depth=2 check --tests --examples"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# tests avoiding io-uring feature
|
2023-12-06 05:04:39 +01:00
|
|
|
ci-test = "hack --feature-powerset --depth=2 --exclude-features=io-uring test --lib --tests --no-fail-fast -- --nocapture"
|