This may be related to https://github.com/rust-lang/rustfmt/issues/4648 , but I don't know if it's the same issue. rustfmt sorts imports, and braced groups within imports, in the following order: ```rust use a; use aA; use aa; use Aa; use WoRD; use Word; use A; use AA; use WORD; use brace_group_sort_test::{a, aA, aa, Aa, WoRD, Word, A, AA, WORD}; ``` This isn't alphabetical, ASCIIbetical, or any other sort order that I can identify. The [style guide](https://github.com/rust-dev-tools/fmt-rfcs/blob/master/guide/items.md#ordering-of-imports) says to sort ascii-betically here, in both cases (top-level and within braced lists).