**rust.vim version**: 889b9a7515db477f4cb6808bef1769e53493c578 **rustc version**: `rustc 1.90.0-beta.1 (788da80fc 2025-08-04)` **editor or extension**: `NVIM v0.11.3` **code snippet to reproduce**: ```rust use std::collections::{hash_map, HashMap}; ``` rust.vim's format-on-save insists that this should be formatted as above, but `cargo fmt` on both beta and stable rewrites it to: ```rust use std::collections::{HashMap, hash_map}; ```