rustfmt.toml ```toml reorder_imports = true reorder_imports_in_group = true ``` input ```rust // cmp use std::cmp; use std::cmp::{max, min, Ordering}; ``` output ```rust // cmp use std::cmp; use std::cmp::{max, min, Ordering}; ```