extend = [
{ path = "make/benchmark.toml" },
{ path = "make/coverage.toml" },
{ path = "make/fuzz.toml" },
{ path = "make/tests.toml" },
{ path = "make/utils.toml" }
]
[config]
default_to_workspace = false
[tasks.ci]
dependencies = [
"ci-format",
"ci-clippy",
"ci-test",
]
[tasks.ci-format]
description = "Check file formatting (mirrors CI check_style)"
command = "cargo"
args = ["fmt", "--all", "--", "--check"]
[tasks.ci-clippy]
description = "Run clippy with all features (mirrors CI check_style)"
command = "cargo"
args = ["clippy", "--workspace", "--all-features"]
[tasks.ci-test]
description = "Run all local tests (mirrors CI standard_tests + dependency_tests)"
dependencies = [
"test-no-std",
"test-default",
"test-legacy-ops",
"test-maths",
"test-macros",
"test-serde",
"test-misc",
]