You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RFC 3052: Stop including authors field in manifests made by cargo new
See rust-lang/rust#83227
~~This is definitely a draft as there are a couple of tests I'm still working on fixing.~~ One question I ran into while digging through these test failures is that there is a Cargo config option for author name, `cargo-new.name`. Should we keep supporting that? I feel like perhaps we should as the user has specified explicit intent that they want their name in the authors of a manifest as generated by `cargo new`, but it seems weird to support *just* that case. There is likewise an environment variable `CARGO_NAME` that signals similar intent.
Should we completely drop the feature of putting in author names, and require people to manually put them in if they wish, or allow these limited cases where the user is specifically instructing *cargo* to do it?
// "Name <email>" or "Name" or "<email>" or None if neither name nor email is obtained
672
-
// cfg takes priority over the discovered ones
673
-
let author_name = cfg.name.or(discovered_name);
674
-
let author_email = cfg.email.or(discovered_email);
675
-
676
-
let author = match(author_name, author_email){
677
-
(Some(name),Some(email)) => {
678
-
if email.is_empty(){
679
-
Some(name)
680
-
}else{
681
-
Some(format!("{} <{}>", name, email))
682
-
}
683
-
}
684
-
(Some(name),None) => Some(name),
685
-
(None,Some(email)) => {
686
-
if email.is_empty(){
687
-
None
688
-
}else{
689
-
Some(format!("<{}>", email))
690
-
}
691
-
}
692
-
(None,None) => None,
693
-
};
694
-
695
672
letmut cargotoml_path_specifier = String::new();
696
673
697
674
// Calculate what `[lib]` and `[[bin]]`s we need to append to `Cargo.toml`.
@@ -730,18 +707,13 @@ path = {}
730
707
r#"[package]
731
708
name = "{}"
732
709
version = "0.1.0"
733
-
authors = [{}]
734
710
edition = {}
735
711
{}
736
712
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
0 commit comments