remove all-features devshell

It's no longer necessary since it's equivalent to the default-features
one now. The `DIRENV_DEVSHELL` thing is left in place however in case
that becomes useful again in the future.
This commit is contained in:
Charles Hall 2025-07-24 14:56:18 -07:00
parent e6dbc293f1
commit b5294f9aa0
3 changed files with 0 additions and 34 deletions

View file

@ -88,21 +88,6 @@ name = "cargo-clippy/default"
group = "lints"
script = "cargo clippy --workspace --all-targets --color=always -- -D warnings"
[[task]]
name = "cargo-clippy/all"
group = "lints"
script = """
env DIRENV_DEVSHELL=all-features \
direnv exec . \
cargo clippy \
--workspace \
--all-targets \
--all-features \
--color=always \
-- \
-D warnings
"""
[[task]]
name = "cargo/default"
group = "tests"
@ -114,18 +99,3 @@ cargo test \
-- \
--color=always
"""
[[task]]
name = "cargo/all"
group = "tests"
script = """
env DIRENV_DEVSHELL=all-features \
direnv exec . \
cargo test \
--all-features \
--workspace \
--all-targets \
--color=always \
-- \
--color=always
"""