Skip to content

Drop legacy path support under Rust edition 2018 (or later) #5398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions src/cargo/util/toml/targets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ pub fn targets(

let has_lib;

if let Some(target) = clean_lib(manifest.lib.as_ref(), package_root, package_name, warnings)? {
if let Some(target) = clean_lib(
manifest.lib.as_ref(),
package_root,
package_name,
edition,
warnings,
)? {
targets.push(target);
has_lib = true;
} else {
Expand Down Expand Up @@ -105,6 +111,7 @@ fn clean_lib(
toml_lib: Option<&TomlLibTarget>,
package_root: &Path,
package_name: &str,
edition: Edition,
warnings: &mut Vec<String>,
) -> CargoResult<Option<Target>> {
let inferred = inferred_lib(package_root);
Expand Down Expand Up @@ -140,7 +147,7 @@ fn clean_lib(
(None, Some(path)) => path,
(None, None) => {
let legacy_path = package_root.join("src").join(format!("{}.rs", lib.name()));
if legacy_path.exists() {
if edition < Edition::Edition2018 && legacy_path.exists() {
warnings.push(format!(
"path `{}` was erroneously implicitly accepted for library `{}`,\n\
please rename the file to `src/lib.rs` or set lib.path in Cargo.toml",
Expand Down Expand Up @@ -237,7 +244,7 @@ fn clean_bins(

let mut result = Vec::new();
for bin in &bins {
let path = target_path(bin, &inferred, "bin", package_root, &mut |_| {
let path = target_path(bin, &inferred, "bin", package_root, edition, &mut |_| {
if let Some(legacy_path) = legacy_bin_path(package_root, &bin.name(), has_lib) {
warnings.push(format!(
"path `{}` was erroneously implicitly accepted for binary `{}`,\n\
Expand Down Expand Up @@ -469,7 +476,7 @@ fn clean_targets_with_legacy_path(
validate_unique_names(&toml_targets, target_kind)?;
let mut result = Vec::new();
for target in toml_targets {
let path = target_path(&target, inferred, target_kind, package_root, legacy_path);
let path = target_path(&target, inferred, target_kind, package_root, edition, legacy_path);
let path = match path {
Ok(path) => path,
Err(e) => {
Expand Down Expand Up @@ -695,6 +702,7 @@ fn target_path(
inferred: &[(String, PathBuf)],
target_kind: &str,
package_root: &Path,
edition: Edition,
legacy_path: &mut FnMut(&TomlTarget) -> Option<PathBuf>,
) -> Result<PathBuf, String> {
if let Some(ref path) = target.path {
Expand All @@ -713,8 +721,10 @@ fn target_path(
match (first, second) {
(Some(path), None) => Ok(path),
(None, None) | (Some(_), Some(_)) => {
if let Some(path) = legacy_path(target) {
return Ok(path);
if edition < Edition::Edition2018 {
if let Some(path) = legacy_path(target) {
return Ok(path);
}
}
Err(format!(
"can't find `{name}` {target_kind}, specify {target_kind}.path",
Expand Down