We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08a1a3 commit b437782Copy full SHA for b437782
src/cargo/util/toml/mod.rs
@@ -468,7 +468,7 @@ impl TomlProfile {
468
469
// Feature gate definition of named profiles
470
match name {
471
- "dev" | "release" | "bench" | "test" | "doc" | "check" => {}
+ "dev" | "release" | "bench" | "test" | "doc" => {}
472
_ => {
473
features.require(Feature::named_profiles())?;
474
}
tests/testsuite/profile_targets.rs
@@ -29,8 +29,6 @@ fn all_target_project() -> Project {
29
codegen-units = 3
30
[profile.bench]
31
codegen-units = 4
32
- [profile.check]
33
- codegen-units = 5
34
"#,
35
)
36
.file("src/lib.rs", "extern crate bar;")
0 commit comments