Skip to content

Commit 5891aec

Browse files
committed
Auto merge of #5029 - matklad:new-defaults-to-bin, r=withoutboats
New defaults to bin So this switches `cargo new` default from `--lib` to `--bin`, as discussed on IRC. The first two commits are just refactorings, and the last one actually flips the switch. Surprisingly enough, no tests need to be modified it seems! r? @withoutboats
2 parents 2d42bcf + 9cb10e6 commit 5891aec

File tree

5 files changed

+56
-57
lines changed

5 files changed

+56
-57
lines changed

src/bin/init.rs

+7-10
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Options:
3232
control system (git, hg, pijul, or fossil) or do not
3333
initialize any version control at all (none), overriding
3434
a global configuration.
35-
--bin Use a binary (application) template
36-
--lib Use a library template [default]
35+
--bin Use a binary (application) template [default]
36+
--lib Use a library template
3737
--name NAME Set the resulting package name
3838
-v, --verbose ... Use verbose output (-vv very verbose/build.rs output)
3939
-q, --quiet No output printed to stdout
@@ -56,17 +56,14 @@ pub fn execute(options: Options, config: &mut Config) -> CliResult {
5656

5757
let path = &arg_path.unwrap_or_else(|| String::from("."));
5858
let opts = ops::NewOptions::new(flag_vcs,
59-
flag_bin,
60-
flag_lib,
61-
path,
62-
flag_name.as_ref().map(|s| s.as_ref()));
59+
flag_bin,
60+
flag_lib,
61+
path,
62+
flag_name.as_ref().map(|s| s.as_ref()))?;
6363

64-
let opts_lib = opts.lib;
6564
ops::init(&opts, config)?;
6665

67-
config.shell().status("Created", format!("{} project",
68-
if opts_lib { "library" }
69-
else {"binary (application)"}))?;
66+
config.shell().status("Created", format!("{} project", opts.kind))?;
7067

7168
Ok(())
7269
}

src/bin/new.rs

+4-8
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Options:
3232
control system (git, hg, pijul, or fossil) or do not
3333
initialize any version control at all (none), overriding
3434
a global configuration.
35-
--bin Use a binary (application) template
36-
--lib Use a library template [default]
35+
--bin Use a binary (application) template [default]
36+
--lib Use a library template
3737
--name NAME Set the resulting package name, defaults to the value of <path>
3838
-v, --verbose ... Use verbose output (-vv very verbose/build.rs output)
3939
-q, --quiet No output printed to stdout
@@ -58,15 +58,11 @@ pub fn execute(options: Options, config: &mut Config) -> CliResult {
5858
flag_bin,
5959
flag_lib,
6060
&arg_path,
61-
flag_name.as_ref().map(|s| s.as_ref()));
61+
flag_name.as_ref().map(|s| s.as_ref()))?;
6262

63-
let opts_lib = opts.lib;
6463
ops::new(&opts, config)?;
6564

66-
config.shell().status("Created", format!("{} `{}` project",
67-
if opts_lib { "library" }
68-
else {"binary (application)"},
69-
arg_path))?;
65+
config.shell().status("Created", format!("{} `{}` project", opts.kind, arg_path))?;
7066

7167
Ok(())
7268
}

src/cargo/ops/cargo_new.rs

+42-34
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use std::collections::BTreeMap;
22
use std::env;
33
use std::fs;
4+
use std::fmt;
45
use std::path::Path;
56

67
use serde::{Deserialize, Deserializer};
@@ -23,12 +24,32 @@ pub enum VersionControl { Git, Hg, Pijul, Fossil, NoVcs }
2324
#[derive(Debug)]
2425
pub struct NewOptions<'a> {
2526
pub version_control: Option<VersionControl>,
26-
pub bin: bool,
27-
pub lib: bool,
27+
pub kind: NewProjectKind,
2828
pub path: &'a str,
2929
pub name: Option<&'a str>,
3030
}
3131

32+
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
33+
pub enum NewProjectKind {
34+
Bin,
35+
Lib,
36+
}
37+
38+
impl NewProjectKind {
39+
fn is_bin(&self) -> bool {
40+
*self == NewProjectKind::Bin
41+
}
42+
}
43+
44+
impl fmt::Display for NewProjectKind {
45+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
46+
match *self {
47+
NewProjectKind::Bin => "binary (application)",
48+
NewProjectKind::Lib => "library",
49+
}.fmt(f)
50+
}
51+
}
52+
3253
struct SourceFileInformation {
3354
relative_path: String,
3455
target_name: String,
@@ -62,26 +83,21 @@ impl<'de> Deserialize<'de> for VersionControl {
6283

6384
impl<'a> NewOptions<'a> {
6485
pub fn new(version_control: Option<VersionControl>,
65-
bin: bool,
66-
lib: bool,
67-
path: &'a str,
68-
name: Option<&'a str>) -> NewOptions<'a> {
69-
70-
// default to lib
71-
let is_lib = if !bin {
72-
true
73-
}
74-
else {
75-
lib
86+
bin: bool,
87+
lib: bool,
88+
path: &'a str,
89+
name: Option<&'a str>) -> CargoResult<NewOptions<'a>> {
90+
91+
let kind = match (bin, lib) {
92+
(true, true) => bail!("can't specify both lib and binary outputs"),
93+
(true, false) => NewProjectKind::Bin,
94+
(false, true) => NewProjectKind::Lib,
95+
// default to bin
96+
(false, false) => NewProjectKind::Bin,
7697
};
7798

78-
NewOptions {
79-
version_control: version_control,
80-
bin: bin,
81-
lib: is_lib,
82-
path: path,
83-
name: name,
84-
}
99+
let opts = NewOptions { version_control, kind, path, name };
100+
Ok(opts)
85101
}
86102
}
87103

@@ -127,7 +143,7 @@ fn check_name(name: &str, opts: &NewOptions) -> CargoResult<()> {
127143
"super", "test", "trait", "true", "type", "typeof",
128144
"unsafe", "unsized", "use", "virtual", "where",
129145
"while", "yield"];
130-
if blacklist.contains(&name) || (opts.bin && is_bad_artifact_name(name)) {
146+
if blacklist.contains(&name) || (opts.kind.is_bin() && is_bad_artifact_name(name)) {
131147
bail!("The name `{}` cannot be used as a crate name{}",
132148
name,
133149
name_help)
@@ -269,19 +285,15 @@ pub fn new(opts: &NewOptions, config: &Config) -> CargoResult<()> {
269285
)
270286
}
271287

272-
if opts.lib && opts.bin {
273-
bail!("can't specify both lib and binary outputs")
274-
}
275-
276288
let name = get_name(&path, opts)?;
277289
check_name(name, opts)?;
278290

279291
let mkopts = MkOptions {
280292
version_control: opts.version_control,
281293
path: &path,
282294
name: name,
283-
source_files: vec![plan_new_source_file(opts.bin, name.to_string())],
284-
bin: opts.bin,
295+
source_files: vec![plan_new_source_file(opts.kind.is_bin(), name.to_string())],
296+
bin: opts.kind.is_bin(),
285297
};
286298

287299
mk(config, &mkopts).chain_err(|| {
@@ -299,10 +311,6 @@ pub fn init(opts: &NewOptions, config: &Config) -> CargoResult<()> {
299311
bail!("`cargo init` cannot be run on existing Cargo projects")
300312
}
301313

302-
if opts.lib && opts.bin {
303-
bail!("can't specify both lib and binary outputs");
304-
}
305-
306314
let name = get_name(&path, opts)?;
307315
check_name(name, opts)?;
308316

@@ -311,7 +319,7 @@ pub fn init(opts: &NewOptions, config: &Config) -> CargoResult<()> {
311319
detect_source_paths_and_types(&path, name, &mut src_paths_types)?;
312320

313321
if src_paths_types.is_empty() {
314-
src_paths_types.push(plan_new_source_file(opts.bin, name.to_string()));
322+
src_paths_types.push(plan_new_source_file(opts.kind.is_bin(), name.to_string()));
315323
} else {
316324
// --bin option may be ignored if lib.rs or src/lib.rs present
317325
// Maybe when doing `cargo init --bin` inside a library project stub,
@@ -353,9 +361,9 @@ pub fn init(opts: &NewOptions, config: &Config) -> CargoResult<()> {
353361
}
354362

355363
let mkopts = MkOptions {
356-
version_control: version_control,
364+
version_control,
357365
path: &path,
358-
name: name,
366+
name,
359367
bin: src_paths_types.iter().any(|x|x.bin),
360368
source_files: src_paths_types,
361369
};

src/doc/src/getting-started/first-steps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $ cargo new hello_world --bin
77
```
88

99
We’re passing `--bin` because we’re making a binary program: if we
10-
were making a library, we’d leave it off.
10+
were making a library, we’d pass `--lib`.
1111

1212
Let’s check out what Cargo has generated for us:
1313

src/doc/src/guide/creating-a-new-project.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $ cargo new hello_world --bin
77
```
88

99
We’re passing `--bin` because we’re making a binary program: if we
10-
were making a library, we’d leave it off. This also initializes a new `git`
10+
were making a library, we’d pass `--lib`. This also initializes a new `git`
1111
repository by default. If you don't want it to do that, pass `--vcs none`.
1212

1313
Let’s check out what Cargo has generated for us:
@@ -23,9 +23,7 @@ $ tree .
2323
1 directory, 2 files
2424
```
2525

26-
If we had just used `cargo new hello_world` without the `--bin` flag, then
27-
we would have a `lib.rs` instead of a `main.rs`. For now, however, this is all
28-
we need to get started. First, let’s check out `Cargo.toml`:
26+
Let’s take a closer look at `Cargo.toml`:
2927

3028
```toml
3129
[package]

0 commit comments

Comments
 (0)