Rust Max: Tools
- Standard Rust tools:
cargo
rustc
rustup
rustdoc
rustfmt
clippy
just
mdbook
bindgen
miri
- Cargo plugins:
cargo-edit
cargo-clean-all
cargo-deny
cargo-license
cargo-audit
cargo-generate
- More Rust tools:
clippy-control
- More tools:
ripgrep
tokei
basic-http-server
gist
jaq
jsonxf
fd
sd
todo say something here
Standard Rust tools
📦 cargo
The Rust build and packaging tool.
It is the central tool in most Rust development workflows.
It is part of every Rust toolchain,
usually managed by rustup
.
📦 rustc
📦 rustup
📦 rustfmt
📦 mdbook
📦 bindgen
📦 miri
Cargo plugins
📦 cargo-edit
Extra cargo
subcommands for editing Cargo.toml
.
cargo install cargo-edit
Installing cargo-edit
provides two cargo
subcommands:
cargo add
was once provided by cargo-edit
but since Rust 1.62.0
is built into cargo
itself.