rust-clippy/.cargo/config.toml

19 lines
658 B
TOML
Raw Normal View History

[alias]
2023-07-27 11:40:22 +00:00
uitest = "test --test compile-test -- --check"
uibless = "test --test compile-test"
bless = "test"
2021-09-08 17:50:57 +00:00
dev = "run --package clippy_dev --bin clippy_dev --manifest-path clippy_dev/Cargo.toml --"
lintcheck = "run --package lintcheck --bin lintcheck --manifest-path lintcheck/Cargo.toml -- "
collect-metadata = "test --test dogfood --features internal -- run_metadata_collection_lint --ignored"
[build]
# -Zbinary-dep-depinfo allows us to track which rlib files to use for compiling UI tests
rustflags = ["-Zunstable-options", "-Zbinary-dep-depinfo"]
2021-09-08 19:05:49 +00:00
target-dir = "target"
[unstable]
binary-dep-depinfo = true
[profile.dev]
split-debuginfo = "unpacked"