1 Repo
Tools that integrate with the Cargo build system to format Rust source files across crate and workspace targets.
Distinct from Modular Subcommand Integrators: Distinct from Modular Subcommand Integrators: focuses specifically on Cargo subcommand integration for code formatting, not general modular command architecture.
Explore 1 awesome GitHub repository matching development tools & productivity · Cargo Subcommand Formatters. Refine with filters or upvote what's useful.
rustfmt is a Rust code formatter that operates as a Cargo subcommand, applying consistent formatting to Rust source files according to official style guidelines. It parses source code into a syntax tree, applies formatting rules to tree nodes, and pretty-prints the result back to text, with support for TOML-driven configuration that allows per-project style customization. The formatter is edition-aware, automatically selecting formatting rules based on the Rust edition specified in the project, and supports a style edition override that decouples formatting rules from the Rust edition used fo
Integrates with Cargo as a subcommand to format all crate and workspace targets.