From 7d27921260d5a387ff5e79cf6f8646ccaa0041d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arno=20Bl=C3=BCmel?= Date: Fri, 5 Sep 2025 18:40:49 +0000 Subject: [PATCH 1/2] docs: add "Stable" property for `merge_imports' option --- Configurations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configurations.md b/Configurations.md index fce37eecac3..5a100a85bc4 100644 --- a/Configurations.md +++ b/Configurations.md @@ -2058,6 +2058,7 @@ This option is deprecated. Use `imports_granularity = "Crate"` instead. - **Default value**: `false` - **Possible values**: `true`, `false` +- **Stable**: No (tracking issue: [#3362](https://github.com/rust-lang/rustfmt/issues/3362)) #### `false` (default): @@ -2073,7 +2074,6 @@ use foo::{e, f}; use foo::{a, b, c, d, e, f, g}; ``` - ## `newline_style` Unix or Windows line endings From 6996073f29b9b9e9ca6ed8cfc3029f8210c7e972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arno=20Bl=C3=BCmel?= Date: Fri, 5 Sep 2025 18:43:39 +0000 Subject: [PATCH 2/2] docs: add link to tracking issue for option style_edition --- Configurations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configurations.md b/Configurations.md index 5a100a85bc4..1859cddd6e7 100644 --- a/Configurations.md +++ b/Configurations.md @@ -2840,7 +2840,7 @@ Controls the edition of the [Rust Style Guide] to use for formatting ([RFC 3338] - **Default value**: `"2015"` - **Possible values**: `"2015"`, `"2018"`, `"2021"`, `"2024"` (unstable variant) -- **Stable**: No +- **Stable**: No (tracking issue: [#5720](https://github.com/rust-lang/rustfmt/issues/5720)) This option is inferred from the [`edition`](#edition) if not specified.