Skip to content

Commit 9cb10e6

Browse files
committed
Switch cargo new default to --bin
1 parent 9e5721c commit 9cb10e6

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

src/bin/init.rs

+2-2
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

src/bin/new.rs

+2-2
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

src/cargo/ops/cargo_new.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ impl<'a> NewOptions<'a> {
9292
(true, true) => bail!("can't specify both lib and binary outputs"),
9393
(true, false) => NewProjectKind::Bin,
9494
(false, true) => NewProjectKind::Lib,
95-
// default to lib
96-
(false, false) => NewProjectKind::Lib,
95+
// default to bin
96+
(false, false) => NewProjectKind::Bin,
9797
};
9898

9999
let opts = NewOptions { version_control, kind, path, name };

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)