File tree Expand file tree Collapse file tree 5 files changed +70
-2
lines changed Expand file tree Collapse file tree 5 files changed +70
-2
lines changed Original file line number Diff line number Diff line change 5959 * [ cargo build] ( commands/cargo-build.md )
6060 * [ cargo check] ( commands/cargo-check.md )
6161 * [ cargo clean] ( commands/cargo-clean.md )
62+ * [ cargo clippy] ( commands/cargo-clippy.md )
6263 * [ cargo doc] ( commands/cargo-doc.md )
6364 * [ cargo fetch] ( commands/cargo-fetch.md )
6465 * [ 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 )
6569 * [ cargo run] ( commands/cargo-run.md )
6670 * [ cargo rustc] ( commands/cargo-rustc.md )
6771 * [ cargo rustdoc] ( commands/cargo-rustdoc.md )
6872 * [ cargo test] ( commands/cargo-test.md )
69- * [ cargo report] ( commands/cargo-report.md )
7073 * [ Manifest Commands] ( commands/manifest-commands.md )
7174 * [ cargo add] ( commands/cargo-add.md )
7275 * [ cargo generate-lockfile] ( commands/cargo-generate-lockfile.md )
Original file line number Diff line number Diff line change 33* [ cargo build] ( cargo-build.md )
44* [ cargo check] ( cargo-check.md )
55* [ cargo clean] ( cargo-clean.md )
6+ * [ cargo clippy] ( cargo-clippy.md )
67* [ cargo doc] ( cargo-doc.md )
78* [ cargo fetch] ( cargo-fetch.md )
89* [ cargo fix] ( cargo-fix.md )
10+ * [ cargo fmt] ( cargo-fmt.md )
11+ * [ cargo miri] ( cargo-miri.md )
12+ * [ cargo report] ( cargo-report.md )
913* [ cargo run] ( cargo-run.md )
1014* [ cargo rustc] ( cargo-rustc.md )
1115* [ cargo rustdoc] ( cargo-rustdoc.md )
1216* [ 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