File tree Expand file tree Collapse file tree 6 files changed +80
-3
lines changed Expand file tree Collapse file tree 6 files changed +80
-3
lines changed Original file line number Diff line number Diff line change 2
2
#
3
3
# The goal is to help people find the right file to edit
4
4
src /doc /man /generated_txt
5
- src /doc /src /commands
5
+ src /doc /src /commands / *
6
6
src /etc /man
7
+ ! src /doc /src /commands /build-commands.md
8
+ ! src /doc /src /commands /cargo-clippy.md
9
+ ! src /doc /src /commands /cargo-fmt.md
10
+ ! src /doc /src /commands /cargo-miri.md
11
+ ! src /doc /src /commands /general-commands.md
12
+ ! src /doc /src /commands /index.md
13
+ ! src /doc /src /commands /manifest-commands.md
14
+ ! src /doc /src /commands /package-commands.md
15
+ ! src /doc /src /commands /publishg-commands.md
Original file line number Diff line number Diff line change 59
59
* [ cargo build] ( commands/cargo-build.md )
60
60
* [ cargo check] ( commands/cargo-check.md )
61
61
* [ cargo clean] ( commands/cargo-clean.md )
62
+ * [ cargo clippy] ( commands/cargo-clippy.md )
62
63
* [ cargo doc] ( commands/cargo-doc.md )
63
64
* [ cargo fetch] ( commands/cargo-fetch.md )
64
65
* [ cargo fix] ( commands/cargo-fix.md )
66
+ * [ cargo fmt] ( commands/cargo-fmt.md )
67
+ * [ cargo miri] ( commands/cargo-miri.md )
68
+ * [ cargo report] ( commands/cargo-report.md )
65
69
* [ cargo run] ( commands/cargo-run.md )
66
70
* [ cargo rustc] ( commands/cargo-rustc.md )
67
71
* [ cargo rustdoc] ( commands/cargo-rustdoc.md )
68
72
* [ cargo test] ( commands/cargo-test.md )
69
- * [ cargo report] ( commands/cargo-report.md )
70
73
* [ Manifest Commands] ( commands/manifest-commands.md )
71
74
* [ cargo add] ( commands/cargo-add.md )
72
75
* [ cargo generate-lockfile] ( commands/cargo-generate-lockfile.md )
Original file line number Diff line number Diff line change 3
3
* [ cargo build] ( cargo-build.md )
4
4
* [ cargo check] ( cargo-check.md )
5
5
* [ cargo clean] ( cargo-clean.md )
6
+ * [ cargo clippy] ( cargo-clippy.md )
6
7
* [ cargo doc] ( cargo-doc.md )
7
8
* [ cargo fetch] ( cargo-fetch.md )
8
9
* [ cargo fix] ( cargo-fix.md )
10
+ * [ cargo fmt] ( cargo-fmt.md )
11
+ * [ cargo miri] ( cargo-miri.md )
12
+ * [ cargo report] ( cargo-report.md )
9
13
* [ cargo run] ( cargo-run.md )
10
14
* [ cargo rustc] ( cargo-rustc.md )
11
15
* [ cargo rustdoc] ( cargo-rustdoc.md )
12
16
* [ cargo test] ( cargo-test.md )
13
- * [ cargo report] ( cargo-report.md )
Original file line number Diff line number Diff line change
1
+ # cargo-clippy(1)
2
+
3
+ ## NAME
4
+
5
+ cargo-miri --- Checks a package to catch common mistakes and improve your Rust code
6
+
7
+ ## DESCRIPTION
8
+
9
+ This is an external command distributed with the Rust toolchain as an optional component.
10
+ It is not built into Cargo, and may require additional installation.
11
+
12
+ For information about usage and installation,
13
+ see [ Clippy Documentation] ( ../../clippy/index.html ) .
14
+
15
+ ## SEE ALSO
16
+
17
+ [ cargo(1)] ( cargo.md ) ,
18
+ [ cargo-fix(1)] ( cargo-fix.md ) ,
19
+ [ cargo-fmt(1)] ( cargo-fmt.md ) ,
20
+ [ Custom subcommands] ( ../reference/external-tools.md#custom-subcommands )
Original file line number Diff line number Diff line change
1
+ # cargo-fmt(1)
2
+
3
+ ## NAME
4
+
5
+ carog-fmt --- Formats all bin and lib files of the current crate using rustfmt
6
+
7
+ ## DESCRIPTION
8
+
9
+ This is an external command distributed with the Rust toolchain as an optional component.
10
+ It is not built into Cargo, and may require additional installation.
11
+
12
+ For information about usage and installation,
13
+ see < https://github.com/rust-lang/rustfmt > .
14
+
15
+ ## SEE ALSO
16
+
17
+ [ cargo(1)] ( cargo.md ) ,
18
+ [ cargo-fix(1)] ( cargo-fix.md ) ,
19
+ [ cargo-clippy(1)] ( cargo-clippy.md ) ,
20
+ [ Custom subcommands] ( ../reference/external-tools.md#custom-subcommands )
Original file line number Diff line number Diff line change
1
+ # cargo-miri(1)
2
+
3
+ ## NAME
4
+
5
+ cargo-miri --- Runs binary crates and tests in Miri
6
+
7
+ ## DESCRIPTION
8
+
9
+ This is an external command distributed with the Rust toolchain as an optional component.
10
+ It is not built into Cargo, and may require additional installation.
11
+
12
+ This command is only available on the [ nightly] ( https://doc.rust-lang.org/book/appendix-07-nightly-rust.html ) channel.
13
+
14
+ For information about usage and installation,
15
+ see < https://github.com/rust-lang/miri > .
16
+
17
+ ## SEE ALSO
18
+
19
+ [ cargo(1)] ( cargo.md ) ,
20
+ [ cargo-run(1)] ( cargo-run.md ) ,
21
+ [ cargo-test(1)] ( cargo-test.md ) ,
22
+ [ Custom subcommands] ( ../reference/external-tools.md#custom-subcommands )
You can’t perform that action at this time.
0 commit comments