2019-02-08 08:05:52 +01:00
|
|
|
[alias]
|
|
|
|
uitest = "test --test compile-test"
|
2023-07-02 14:35:19 +02:00
|
|
|
uibless = "test --test compile-test -- -- --bless"
|
|
|
|
bless = "test -- -- --bless"
|
2021-09-28 18:03:12 +01: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 -- "
|
2022-01-13 13:18:19 +01:00
|
|
|
collect-metadata = "test --test dogfood --features internal -- run_metadata_collection_lint --ignored"
|
2019-04-15 13:03:07 +02:00
|
|
|
|
|
|
|
[build]
|
2021-09-08 16:31:47 +02:00
|
|
|
# -Zbinary-dep-depinfo allows us to track which rlib files to use for compiling UI tests
|
|
|
|
rustflags = ["-Zunstable-options", "-Zbinary-dep-depinfo"]
|
2021-09-28 18:03:12 +01:00
|
|
|
target-dir = "target"
|
2022-01-13 13:18:19 +01:00
|
|
|
|
|
|
|
[unstable]
|
|
|
|
binary-dep-depinfo = true
|
2023-04-11 15:31:08 +02:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
split-debuginfo = "unpacked"
|