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 d9e3424 commit d815619Copy full SHA for d815619
src/cargo/util/toml/mod.rs
@@ -1434,7 +1434,7 @@ pub fn to_real_manifest(
1434
autoexamples,
1435
autotests,
1436
autobenches,
1437
- default_run: _,
+ default_run,
1438
description: _,
1439
homepage: _,
1440
documentation: _,
@@ -1458,6 +1458,7 @@ pub fn to_real_manifest(
1458
("`package.autoexamples`", autoexamples.is_some()),
1459
("`package.autotests`", autotests.is_some()),
1460
("`package.autobenches`", autobenches.is_some()),
1461
+ ("`package.default-run`", default_run.is_some()),
1462
]);
1463
}
1464
let invalid_fields = invalid_fields
0 commit comments