]> git.lizzy.rs Git - rust.git/blob - .cargo/config.toml
Introduce `ExprKind::IncludedBytes`
[rust.git] / .cargo / config.toml
1 [alias]
2 uitest = "test --test compile-test"
3 dev = "run --package clippy_dev --bin clippy_dev --manifest-path clippy_dev/Cargo.toml --"
4 lintcheck = "run --package lintcheck --bin lintcheck --manifest-path lintcheck/Cargo.toml  -- "
5 collect-metadata = "test --test dogfood --features internal -- run_metadata_collection_lint --ignored"
6
7 [build]
8 # -Zbinary-dep-depinfo allows us to track which rlib files to use for compiling UI tests
9 rustflags = ["-Zunstable-options", "-Zbinary-dep-depinfo"]
10 target-dir = "target"
11
12 [unstable]
13 binary-dep-depinfo = true