Skip to content

Commit fd3be77

Browse files
committed
Auto merge of #5335 - dwijnand:target-autodiscovery, r=alexcrichton
Introduce autoXXX keys for target auto-discovery In Rust 2015 absence of the configuration makes it default to not include auto-discovered targets (i.e false), with a warnings message. In Rust 2018 absence makes it default to include auto-discovered targets (i.e true). Fixes #5330 --- _original_ Fixes #5330 submitted for early review. feedback very welcome, I'm happy to iterate (and learn). in particular I require assistance with the borrowing of `warnings` in `clean_benches`.
2 parents 6d2781d + ab5ac28 commit fd3be77

File tree

7 files changed

+465
-64
lines changed

7 files changed

+465
-64
lines changed

src/cargo/util/toml/mod.rs

+18-12
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,10 @@ pub struct TomlProject {
459459
workspace: Option<String>,
460460
#[serde(rename = "im-a-teapot")]
461461
im_a_teapot: Option<bool>,
462+
autobins: Option<bool>,
463+
autoexamples: Option<bool>,
464+
autotests: Option<bool>,
465+
autobenches: Option<bool>,
462466

463467
// package metadata
464468
description: Option<String>,
@@ -633,13 +637,27 @@ impl TomlManifest {
633637

634638
let pkgid = project.to_package_id(source_id)?;
635639

640+
let edition = if let Some(ref edition) = project.rust {
641+
features
642+
.require(Feature::edition())
643+
.chain_err(|| "editions are unstable")?;
644+
if let Ok(edition) = edition.parse() {
645+
edition
646+
} else {
647+
bail!("the `rust` key must be one of: `2015`, `2018`")
648+
}
649+
} else {
650+
Edition::Edition2015
651+
};
652+
636653
// If we have no lib at all, use the inferred lib if available
637654
// If we have a lib with a path, we're done
638655
// If we have a lib with no path, use the inferred lib or_else package name
639656
let targets = targets(
640657
me,
641658
package_name,
642659
package_root,
660+
edition,
643661
&project.build,
644662
&mut warnings,
645663
&mut errors,
@@ -798,18 +816,6 @@ impl TomlManifest {
798816
None => false,
799817
};
800818

801-
let edition = if let Some(ref edition) = project.rust {
802-
features
803-
.require(Feature::edition())
804-
.chain_err(|| "editiones are unstable")?;
805-
if let Ok(edition) = edition.parse() {
806-
edition
807-
} else {
808-
bail!("the `rust` key must be one of: `2015`, `2018`")
809-
}
810-
} else {
811-
Edition::Edition2015
812-
};
813819
let custom_metadata = project.metadata.clone();
814820
let mut manifest = Manifest::new(
815821
summary,

0 commit comments

Comments
 (0)