1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 02:41:49 +01:00
actix-net/.cargo/config.toml

16 lines
830 B
TOML
Raw Normal View History

[alias]
2021-11-01 23:36:51 +00:00
lint = "clippy --workspace --tests --examples --bins -- -Dclippy::todo"
lint-all = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy::todo"
# just check the library (without dev deps)
ci-check-min = "hack --workspace check --no-default-features"
2023-12-06 04:04:39 +00: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"
# check everything
2023-12-06 04:04:39 +00: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"
# tests avoiding io-uring feature
2023-12-06 04:04:39 +00:00
ci-test = "hack --feature-powerset --depth=2 --exclude-features=io-uring test --lib --tests --no-fail-fast -- --nocapture"