Skip to content

Commit a997689

Browse files
committed
Auto merge of #5013 - withoutboats:no-rust-rename, r=matklad
Do not rename packages on `cargo new`. Prior to this commit, packages beginning with `rust` or ending with `rs` were renamed automatically when created, unless they were binaries. The ostensible purpose of this code was to avoid people uploading "redundant" names to crates.io, which is a repository of Rust packages. This behavior was overly opinionated. It is not cargo's responsibility to discourage users from naming their packages any particular way. Without a sound technical reasons why packages cannot be named a certain way, cargo should not be intervening in users' package naming decisions. It also did this by automatically renaming the package for the user, as opposed to erroring. Though it printed a message about the behavior, it did not give the user a choice to abort the process; to overrule cargo they had to delete the new project and start again using the `--name` argument. `cargo new` is many users' first entrypoint to the Rust ecosystem. This behavior teaches a user that Rust is opinionated and magical, both of which are divisive attributes for a tool, and attributes which do not generally describe Rust's attitude toward things like names and formatting. If crates.io wishes to enforce that users not upload packages with names like this, it should be enforced by crates.io at publish time.
2 parents 16ffc05 + e101b92 commit a997689

File tree

2 files changed

+9
-85
lines changed

2 files changed

+9
-85
lines changed

src/cargo/ops/cargo_new.rs

+8-53
Original file line numberDiff line numberDiff line change
@@ -91,32 +91,18 @@ struct CargoNewConfig {
9191
version_control: Option<VersionControl>,
9292
}
9393

94-
fn get_name<'a>(path: &'a Path, opts: &'a NewOptions, config: &Config) -> CargoResult<&'a str> {
94+
fn get_name<'a>(path: &'a Path, opts: &'a NewOptions) -> CargoResult<&'a str> {
9595
if let Some(name) = opts.name {
9696
return Ok(name);
9797
}
9898

99-
if path.file_name().is_none() {
100-
bail!("cannot auto-detect project name from path {:?} ; use --name to override",
101-
path.as_os_str());
102-
}
103-
104-
let dir_name = path.file_name().and_then(|s| s.to_str()).ok_or_else(|| {
105-
format_err!("cannot create a project with a non-unicode name: {:?}",
106-
path.file_name().unwrap())
99+
let file_name = path.file_name().ok_or_else(|| {
100+
format_err!("cannot auto-detect project name from path {:?} ; use --name to override", path.as_os_str())
107101
})?;
108102

109-
if opts.bin {
110-
Ok(dir_name)
111-
} else {
112-
let new_name = strip_rust_affixes(dir_name);
113-
if new_name != dir_name {
114-
writeln!(config.shell().err(),
115-
"note: package will be named `{}`; use --name to override",
116-
new_name)?;
117-
}
118-
Ok(new_name)
119-
}
103+
file_name.to_str().ok_or_else(|| {
104+
format_err!("cannot create project with a non-unicode name: {:?}", file_name)
105+
})
120106
}
121107

122108
fn check_name(name: &str, opts: &NewOptions) -> CargoResult<()> {
@@ -287,7 +273,7 @@ pub fn new(opts: &NewOptions, config: &Config) -> CargoResult<()> {
287273
bail!("can't specify both lib and binary outputs")
288274
}
289275

290-
let name = get_name(&path, opts, config)?;
276+
let name = get_name(&path, opts)?;
291277
check_name(name, opts)?;
292278

293279
let mkopts = MkOptions {
@@ -317,7 +303,7 @@ pub fn init(opts: &NewOptions, config: &Config) -> CargoResult<()> {
317303
bail!("can't specify both lib and binary outputs");
318304
}
319305

320-
let name = get_name(&path, opts, config)?;
306+
let name = get_name(&path, opts)?;
321307
check_name(name, opts)?;
322308

323309
let mut src_paths_types = vec![];
@@ -381,20 +367,6 @@ pub fn init(opts: &NewOptions, config: &Config) -> CargoResult<()> {
381367
Ok(())
382368
}
383369

384-
fn strip_rust_affixes(name: &str) -> &str {
385-
for &prefix in &["rust-", "rust_", "rs-", "rs_"] {
386-
if name.starts_with(prefix) {
387-
return &name[prefix.len()..];
388-
}
389-
}
390-
for &suffix in &["-rust", "_rust", "-rs", "_rs"] {
391-
if name.ends_with(suffix) {
392-
return &name[..name.len()-suffix.len()];
393-
}
394-
}
395-
name
396-
}
397-
398370
fn existing_vcs_repo(path: &Path, cwd: &Path) -> bool {
399371
GitRepo::discover(path, cwd).is_ok() || HgRepo::discover(path, cwd).is_ok()
400372
}
@@ -605,20 +577,3 @@ fn global_config(config: &Config) -> CargoResult<CargoNewConfig> {
605577
version_control: vcs,
606578
})
607579
}
608-
609-
#[cfg(test)]
610-
mod tests {
611-
use super::strip_rust_affixes;
612-
613-
#[test]
614-
fn affixes_stripped() {
615-
assert_eq!(strip_rust_affixes("rust-foo"), "foo");
616-
assert_eq!(strip_rust_affixes("foo-rs"), "foo");
617-
assert_eq!(strip_rust_affixes("rs_foo"), "foo");
618-
// Only one affix is stripped
619-
assert_eq!(strip_rust_affixes("rs-foo-rs"), "foo-rs");
620-
assert_eq!(strip_rust_affixes("foo-rs-rs"), "foo-rs");
621-
// It shouldn't touch the middle
622-
assert_eq!(strip_rust_affixes("some-rust-crate"), "some-rust-crate");
623-
}
624-
}

tests/new.rs

+1-32
Original file line numberDiff line numberDiff line change
@@ -163,37 +163,6 @@ fn keyword_name() {
163163
use --name to override crate name"));
164164
}
165165

166-
#[test]
167-
fn rust_prefix_stripped() {
168-
assert_that(cargo_process("new").arg("--lib").arg("rust-foo").env("USER", "foo"),
169-
execs().with_status(0)
170-
.with_stderr_contains("note: package will be named `foo`; use --name to override"));
171-
let toml = paths::root().join("rust-foo/Cargo.toml");
172-
let mut contents = String::new();
173-
File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
174-
assert!(contents.contains(r#"name = "foo""#));
175-
}
176-
177-
#[test]
178-
fn bin_disables_stripping() {
179-
assert_that(cargo_process("new").arg("rust-foo").arg("--bin").env("USER", "foo"),
180-
execs().with_status(0));
181-
let toml = paths::root().join("rust-foo/Cargo.toml");
182-
let mut contents = String::new();
183-
File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
184-
assert!(contents.contains(r#"name = "rust-foo""#));
185-
}
186-
187-
#[test]
188-
fn explicit_name_not_stripped() {
189-
assert_that(cargo_process("new").arg("foo").arg("--name").arg("rust-bar").env("USER", "foo"),
190-
execs().with_status(0));
191-
let toml = paths::root().join("foo/Cargo.toml");
192-
let mut contents = String::new();
193-
File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
194-
assert!(contents.contains(r#"name = "rust-bar""#));
195-
}
196-
197166
#[test]
198167
fn finds_author_user() {
199168
create_empty_gitconfig();
@@ -423,4 +392,4 @@ fn explicit_invalid_name_not_suggested() {
423392
execs().with_status(101)
424393
.with_stderr("\
425394
[ERROR] Package names starting with a digit cannot be used as a crate name"));
426-
}
395+
}

0 commit comments

Comments
 (0)