- Fix issue where rustfmt would crash on Windows when using the
ignore
option #6178
rustfmt --version
now prints a commit hash that is 10 characters long #6258rustfmt --version
will no longer print empty git information when git information isn't available at build time. For example, git information is not available when building rustfmt from a source tarball #6266version
has been soft deprecated and replaced bystyle_edition
.style_edition=2024
is equivalent toversion=Two
andstyle_edition={2015|2018|2021}
are equivalent toversion=One
#6247- When
style_edition=2024
is configuredoverflow_delimited_expr
will default totrue
#6260.// with style_edition=2015 do_thing( x, Bar { x: value, y: value2, }, ); // with style_edition=2024 do_thing(x, Bar { x: value, y: value2, });
- When
style_edition=2024
is configured rustfmt will apply the style guide's version sorting algorithm when sorting imports #6284// with style_edition=2015 use std::num::{NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8}; // with style_edition=2024 use std::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64};
- When parsing rustfmt configurations fails, rustfmt will now include the path to the toml file in the error message #6302
- rustfmt now formats trailing where clauses in type aliases #5887
type Foo = Bar where A: B, C: D;
- Users can now configure which
style_edition
rustfmt uses when formatting their code as specified in RFC 3338. Users are encouraged to configurestyle_edition
in theirrustfmt.toml
files, but the value can also be specified via the cli with--unstable-features --style-edition={style_edition}
. Whenstyle_edition
is not explicitly configured it will be inferred from theedition
configuration. When neitherstyle_edition
noredition
are configuredstyle_edition
defaults to2015
#6247
- Removed
tracing-attributes
dependency #6208 - Reduced syn's features in the internal
config_proc_macro
crate #6237
- Fix an idempotency issue when rewriting where clauses in which rustfmt would continuously add a trailing comma
,
to the end of trailing line comments #5941. - Prevent enum variant attributes from wrapping one character early when using
version=Two
#5801 - Properly wrap macro matchers at the
max_width
when usingversion=Two
andformat_macro_matchers=true
#3805 - Prevent panic when formatting trait declaration with non Unicode Normalization Form C (NFC) identifiers #6069
// The ó below is two codepoints, ASCII o followed by U+0301 COMBINING ACUTE ACCENT. // It NFC-normalizes to ó, U+00F3 LATIN SMALL LETTER O WITH ACUTE. trait Foó: Bar {}
- Ensure a space is added to a range expression, when the right hand side of the range expression is a binary expression that ends with a trailing period #6059
let range = 3. / 2. ..4.;
- When using
version=Two
, comments in match arms that contain=>
no longer prevent formatting #5998match a { _ => // comment with => { println!("A") } }
- Prevent panics when formatting input that contains the expanded form of
offset_of!
#5885 #6105const _: () = builtin # offset_of(x, x);
- When using
version=Two
inner attributes inmatch
expressions are correctly indented #6147pub fn main() { match x { #![attr1] #![attr2] _ => (), } }
- Output correct syntax for type ascription builtin #6159
fn main() { builtin # type_ascribe(10, usize) }
- rustfmt no longer removes inner attributes from inline const blocks #6158
fn main() { const { #![allow(clippy::assertions_on_constants)] assert!(1 < 2); } }
- rustfmt no longer removes
safe
andunsafe
keywords from static items in extern blocks. This helps support#![feature(unsafe_extern_blocks)]
#6204#![feature(unsafe_extern_blocks)] unsafe extern "C" { safe static TEST1: i32; unsafe static TEST2: i32; }
hide_parse_errors
has been soft deprecated and it's been renamed toshow_parse_errors
#5961.- The diff output produced by
rustfmt --check
is more compatible with editors that support navigating directly to line numbers #5971 - When using
version=Two
, thetrace!
macro from the log crate is now formatted similarly todebug!
,info!
,warn!
, anderror!
#5987.
generated_marker_line_search_limit
is a new unstable configuration option that allows users to configure how many lines to search for an@generated
marker whenformat_generated_files=false
#5658
-
Updating
dirs 4.0.0 -> 5.0.1
andcargo_metadata 0.15.4 -> 0.18.0
[#6033] (#6033)- For reference, here's the dirs v5 changelog
-
Updated itertools v0.11 -> v0.12 #6093
-
Addressed clap deprecations output when running
cargo check --features clap/deprecated
#6101 -
Bumped bytecount
0.6.4
->0.6.8
to fix compilation issues with thegeneric-simd
feature. See bytecount#92 and bytecount#93 -
Replace the
lazy_static
dependency withstd::sync::OnceLock
#6154
- Sometimes when
format_code_in_doc_comments=true
was set some line comments were converted to block comments #5533 - rustfmt will no longer remove the braces in match arms when the block has a labeled #5676
fn main() { match true { true => 'a: { break 'a } _ => (), } }
- Calling methods on float literals ending in
.
will now be wrapped in parenthesis. e.g.0. .to_string()
will be formatted as(0.).to_string()
#5791 - Prevent ICE when formatting empty
macro_rules!
branch #5730macro_rules! statement { () => {;}; }
- Prevent ICE when formatting
vec!{}
#5735 - Prevent internal trailing whitespace error when formatting an empty
macro_rules!
definition e.g.macro_rules! foo {}
#5882 - Formatting doc comment lines that start with
.
or)
won't be treated as ordered markdown lists because.
or)
must be preceded by a number to start an ordered markdown list #5835 - Add parenthesis around closures when they're used as method receives, don't have a block body, and end with
.
#4808fn main() { || (10.).method(); (|| ..).method(); (|| 1..).method(); }
- Prevent removing
for<T>
when using the#![feature(non_lifetime_binders)]
#5721#![feature(non_lifetime_binders)] #![allow(incomplete_features)] trait Other<U: ?Sized> {} trait Trait<U> where for<T> U: Other<T> {}
- Fix various issues with comments in imports #5852 #4708 #3984
- When setting
version = Two
newlines between where clause bounds will be removed #5655fn foo<T>(_: T) where T: std::fmt::Debug, T: std::fmt::Display, { }
- Improve formatting of
let-else
statements that have leading attributes When settingversion = Two
#5901 - Prevent comment duplication in expressions wrapped in parenthesis. #5871
- Adjust the span derivation used when rewriting const generics. The incorrect span derivation lead to invalid code after reformatting. #5935
- rustfmt no longer removes explicit
Rust
ABIs. e.gextern "Rust" fn im_a_rust_fn() {}
#5701 - Setting
trailing_semicolon = false
will only remove trailing;
on the last expression in a block #5797 - Update the format of
cargo help fmt
to be more consistent with other standard commands #5908
- Users can now set
skip_macro_invocations
inrustfmt.toml
#5816 - Adds initial support for formatting
let-chains
.let-chains
are still a nightly feature and their formatting is subject to change #5910. Formatting was implemented following the rules outlined in rust-lang/rust#110568
- Support the experimental
dyn*
syntax, enabled by#![feature(dyn_star)]
#5542 - Replace
unicode_categories
dependency withunicode-properties
#5864
- Support for formatting let-else statements #5690
- New config option,
single_line_let_else_max_width
, that allows users to configure the maximum length of single linelet-else
statements.let-else
statements that otherwise meet the requirements to be formatted on a single line will have their divergentelse
block formatted over multiple lines if they exceed this length #5684
- When formatting doc comments with
wrap_comments = true
rustfmt will no longer wrap markdown tables #4210 - Properly handle wrapping comments that include a numbered list in markdown #5416
- Properly handle markdown sublists that utilize a
+
#4041 - rustfmt will no longer use shorthand initialization when rewriting a tuple struct even when
use_field_init_shorthand = true
as this leads to code that could no longer compile. Take the following struct as an examplestruct MyStruct(u64);
. rustfmt will no longer formatMyStruct { 0: 0 }
asMyStruct { 0 }
#5488 - rustfmt no longer panics when formatting an empty code block in a doc comment with
format_code_in_doc_comments = true
#5234. For example:/// ``` /// /// ``` fn main() {}
- rustfmt no longer incorrectly duplicates the where clause bounds when using const expression in where clause bounds with feature
#![feature(generic_const_exprs)]
#5691. e.g.:struct S<const C: usize> where [(); { num_slots!(C) }]:, { // code ... }
- Prevent ICE when parsing invalid attributes in
cfg_if!
macros #5728, #5729 - rustfmt no longer loses comments placed between a doc comment and generic params #5320
- Handle explicit discriminants in enums with comments present #5686
- Users can now control whether rustc parser errors are displayed with color using rustfmt's
--color
option. To disable colored errors pass--color=Never
to rustfmt #5717
- rustfmt now recognises
+
as the start of a markdown list, and won't incorrectly wrap sublists that begin with+
when formatting doc comments withwrap_comments = true
#5560
- Update various dependencies, including
syn
,cargo_metadata
,env_logger
, andtoml
- Resolve issue when comments are found within const generic defaults in unit structs #5668
- Resolve issue when block comments are found within trait generics #5358
- Correctly handle alignment of comments containing unicode characters #5504
- Properly indent a single generic bound that requires being written across multiple lines #4689 (n.b. this change is version gated and will only appear when the
version
configuration option is set toTwo
)
- Renamed
fn_args_layout
configuration option tofn_params_layout
#4149. Note thatfn_args_layout
has only been soft deprecated:fn_args_layout
will continue to work without issue, but rustfmt will display a warning to encourage users to switch to the new name
- New configuration option
skip_macro_invocations
#5347 that can be used to globally define a single enumerated list of macro calls that rustfmt should skip formatting. rustfmt currently also supports this via a custom tool attribute, however, these cannot be used in all contexts because custom inner attributes are unstable
- rustfmt now internally supports the ability to have both stable and unstable variants of a configuration option #5378. This ability will allow the rustfmt team to make certain configuration options available on stable toolchains more quickly because we no longer have to wait for every variant to be stable-ready before stabilizing any variant.
- rustup (nightly) - nightly-2023-01-24
- GitHub Release Binaries - Release v1.5.2
- Build from source - Tag v1.5.2, see instructions for how to install rustfmt from source
N.B A bug was introduced in v1.5.0/nightly-2022-06-15 which modified formatting. If you happened to run rustfmt over your code with one of those ~10 nightlies it's possible you may have seen formatting changes, and you may see additional changes after this fix since that bug has now been reverted.
- Correct an issue introduced in v1.5.0 where formatting changes were unintentionally introduced in a few cases with a large/long construct in a right hand side position (e.g. a large chain on the RHS of a local/assignment statement)
cargo fmt --version
properly displays the version value again #5395
- Properly sort imports containing raw identifiers #3791 (note this is change version gated, and not applied by default)
- Add new configuration option,
doc_comment_code_block_width
, which allows for setting a shorter width limit to use for formatting code snippets in doc comments #5384
- rustup (nightly) - nightly-2022-06-24
- GitHub Release Binaries - Release v1.5.1
- Build from source - Tag v1.5.1, see instructions for how to install rustfmt from source
-
Simplify the rustfmt help text by eliding the full path to the rustfmt binary path from the usage string when running
rustfmt --help
#5214 -
Bumped the version for several dependencies. Most notably
dirs
v2.0.1
->v4.0.0
. This changed the global user config directory on macOS from$HOME/Library/Preferences
to$HOME/Library/Application Support
#5237
- Remove duplicate imports when
imports_granularity
is set toItem
#4725 - Properly handle stdin input containing an inner skip attribute #5368
- Maintain attributes on imports when
imports_granularity
is set toItem
#5030 - Format empty trait definitions as a single line when both
empty_item_single_line
is enabled andbrace_style
is set toAlwaysNextLine
#5047 - Don't change granularity of imports containing comments with
imports_granularity
if doing so could lose or misplace those comments #5311 - Prevent rustfmt from removing trailing comments at the end of files annotated with inner
#![rustfmt::skip]
attributes #5033 - Fixed various
error[internal]: left behind trailing whitespace"
issues: - Prevent adding a block indented newline before a function parameter with a complex type that was formatted over multiple lines #5125
- Fix various module resolution issues preventing rustfmt from finding modules that should be formatted:
- Give users a clearer error message when resolving a module who's file path is ambiguous (e.g
x.rs
andx/mod.rs
). Before users were given aFile not found
error message which was confusing #5167 - Fix various issues related to type aliases:
- Prevent rustfmt from adding
= impl
to associated types defined in macro bodies #4823 - Properly block indent type alias impl traits (TAITs) that wrap to the next line when
version=Two
is set. Before any trait bounds that wrapped to the next line would not be indented #5027 - Prevent rustfmt from adding an
impl Trait
definition into types #5086
- Prevent rustfmt from adding
- Fix cases where
normalize_comments=true
would de-normalizes some comments by changing inline comments into block comments #4909 - Prevent rustfmt from wrapping the content of markdown reference-style links in doc comments #5095 #4933
- Don't format files annotated with inner
#![rustfmt::skip]
attribute PR #5094 - Prevent duplicate comma when struct pattern ends with
..
andtrailing_comma=Always
. For example,let Foo { a, .. } = b;
would becomelet Foo { a,, .. } = b;
#5066 - Fix the order of
static
andasync
keywords when rewriting static async closures. The correct order isstatic
and thenasync
(e.gstatic async || {}
) #5149 - Retain the fully qualified path segment when rewriting struct literals in expression position. Now
<Struct as Trait>::Type
is not rewritten asTrait::Type
#5151 - Do not remove match arm braces from a match arm with a single
ast::ExprKind::Block
that has leading attributes. Removing the braces could lead to code that does not compile. Now rustfmt will leave the outer{}
in place when formatting=> {#[allow(unsafe_code)]unsafe {}}
#4109 - Backport json emitter and stdin changes PR #5054
- Always generate some output when formatting
@generated
files via stdin even whenformat_generated_files=false
. Not producing output caused rust-analyzer to delete the file content rust-lang/rust-analyzer #5172 - Properly block indent multi-line comments in empty struct definitions. Previously, only the first comment line would be block indented. All other comment lines would be aligned with the struct definition #4854
- Prevent rustfmt from wrapping a comment at a byte position inside a non-ascii character when
wrap_comments=true
. This prevents rustfmt from panicking when breaking on the invalid position #5023 - Prevent rustfmt from removing commented out trailing separators (e.g commas) when rewriting lists. For example, remove the comma from a comment like this
// ...,
would lead to a scenario where the entire list could not be rewritten because the content of the comment changed #5042 - Fix panic when
import_granularity
was set toModule
,One
, orCrate
and the import use declaration contained an aliasuse crate a::b as b1
#5131 - Add a newline between generic parameters and their doc comments to prevent the generic parameters from being merged into their doc comments #5122
- Fixes indentation issue where string literals manually broken with line continuation characters (
\
) would be incorrectly indented in macro definitions when settingformat_strings=true
#4036 - Properly wrap and format long markdown block quotes when
wrap_comments=true
#5157 - Prevent rustfmt from wrapping markdown headers even when
wrap_comments=true
. Wrapping the markdown headers would prevent them from being properly rendered with rustdoc #5238 - Prevent rustfmt from removing commas between struct fields when those fields were also separated by an empty line #4791 #4928
- Fix compiler error caused when formatting imports with
imports_granularity=Module
and a path containingself
. Given the following importuse crate::lexer::{self, tokens::TokenData};
, rustfmt would transform theself
import intouse crate::lexer::self;
. Now rustfmt producesuse crate::lexer::{self};
#4681 - Prevent rustfmt from breaking long type links in doc comments on namespace qualifiers (
::
) whenwrap_comments=true
. Breaking these long type links over multiple lines prevented them from being properly rendered in rustdoc #5260 - Correctly find the start of struct bodies after any generic
const
parameters. Naively searching for an opening{
lead to issues since genericconst
parameters are also defined with{}
(e.g.struct Example<const N: usize = { 1048576 }> {}
) #5273 - Prevent rustfmt from merging derives when using inner or outer
rustfmt::skip::attributes
attributes. For example,#[rustfmt::skip::attributes(derive)]
#5270 - Retain trailing
;
when rewriting macro calls in extern blocks. For example,extern "C" { x!(-); }
#5281 - Add a newline when formatting struct fields preceded by both doc comments and inline comments to prevent the field from being merged into the inline comment. This was not an issue when a struct was preceded by just a doc comment or just an inline comment #5215
- Added
One
as a new group_imports option to create a single group for all imports PR #4966 - Add short_array_element_width_threshold config option to give users more control over when
Mixed
list formatting is used PR #5228
- Removed unstable, nightly-only config option
report_todo
#5101 - Removed unstable, nightly-only config option
report_fixme
#5102 - Removed unstable, nightly-only config option
license_template_path
#5103
- Improved performance when formatting large and deeply nested expression trees, often found in generated code, which have many expressions that exceed
max_width
#5128, #4867, #4476, #5139
- rustup (nightly) - nightly-2022-06-15
- GitHub Release Binaries - Release v1.5.0
- Build from source - Tag v1.5.0, see instructions for how to install rustfmt from source
- Switched from
rustc-ap-*
crates torustc_private
for consumption model of rustc internals annotate-snippets
updated to v0.8 PR #4762- Greatly improved the performance of
cargo fmt
in large workspaces utilizing the--all
flag by updating to a newer version ofcargo_metadata
that leverages updatedcargo
output from v1.51+ PR #4997 - Improved formatting of long slice patterns #4530
- Note you must have
version = Two
in your configuration to take advantage of the new formatting
- Note you must have
- Stabilized
match_block_trailing_comma
configuration option #3380 - https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#match_block_trailing_comma - Stabilized
disable_all_formatting
configuration option #5026 - https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#disable_all_formatting - Various improvements to the configuration documentation website https://rust-lang.github.io/rustfmt/?version=v1.4.38
- Addressed various clippy and rustc warnings
- Resolved issue where specious whitespace would be inserted when a block style comment was terminated within string literal processing #4312
- Nested out-of-line mods are again parsed and formatted #4874
- Accepts
2021
for edition value from rustfmt command line PR #4847 - Unstable command line options are no longer displayed in
--help
text on stable PR #4798 - Stopped panicking on patterns in match arms which start with non-ascii characters #4868
- Stopped stripping defaults on const params #4816
- Fixed issue with dropped content with GAT aliases with self bounds in impls #4911
- Stopped removing generic args on associated type constraints #4943
- Stopped dropping visibility on certain trait and impl items #4960
- Fixed dropping of qualified paths in struct patterns #4908 and #5005
- Fixed bug in line width calculation that was causing specious formatting of certain patterns #4031
- Note that this bug fix may cause observable formatting changes in cases where code had been formatted with prior versions of rustfmt that contained the bug
- Fixed bug where rustfmt would drop parameter attributes if they were too long in certain cases #4579
- Resolved idempotency issue with extern body elements #4963
- rustfmt will now handle doc-style comments on function parameters, since they could appear with certain macro usage patterns even though it's generally invalid syntax #4936
- Fixed bug in
match_block_trailing_comma
where commas were not added to the blocks of bodies whose arm had a guard that did not fit on the same line as the pattern #4998 - Fixed bug in cases where derive attributes started with a block style comment #4984
- Fixed issue where the struct rest could be lost when
struct_field_align_threshold
was enabled #4926 - Handles cases where certain control flow type expressions have comments between patterns/keywords and the pattern ident contains the keyword #5009
- Handles tuple structs that have explicit visibilities and start with a block style comment #5011
- Handles leading line-style comments in certain types of macro calls #4615
- Granular width heuristic options made available for user control PR #4782. This includes the following:
Note this hit the rustup distributions prior to the v1.4.38 release as part of an out-of-cycle updates, but is listed in this version because the feature was not in the other v1.4.37 releases. See also the use_small_heuristics
section on the configuration site for more information
https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#use_small_heuristics
- New
One
variant added toimports_granularity
configuration option which can be used to reformat all imports into a single use statement #4669 - rustfmt will now skip files that are annotated with
@generated
at the top of the file #3958 ifformat_generated_files
option is set tofalse
(by default@generated
files are formatted) - New configuration option
hex_literal_case
that allows user to control the casing utilized for hex literals PR #4903
See the section on the configuration site for more information https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#hex_literal_case
cargo fmt
now directly supports the--check
flag, which means it's now possible to runcargo fmt --check
instead of the more verbosecargo fmt -- --check
#3888
- rustup (nightly) - pending
- GitHub Release Binaries - Release v1.4.38
- Build from source - Tag v1.4.38, see instructions for how to install rustfmt from source
rustc-ap-*
crates updated to v712.0.0
- Resolve idempotence issue related to indentation of macro defs that contain or-patterns with inner comments (#4603)
- Addressed various clippy and rustc warnings
- crates.io package - pending
- rustup (nightly) - pending
- GitHub Release Binaries - Release v1.4.37
- Build from source - Tag v1.4.37, see instructions for how to install rustfmt from source
rustc-ap-*
crates updated to v705.0.0
- crates.io package - pending
- rustup (nightly) - pending
- GitHub Release Binaries - Release v1.4.36
- Build from source - Tag v1.4.36, see instructions for how to install rustfmt from source
rustc-ap-*
crates updated to v702.0.0
- crates.io package - pending
- rustup (nightly) - *n/a (superseded by v1.4.36)
- GitHub Release Binaries - Release v1.4.35
- Build from source - Tag v1.4.35, see instructions for how to install rustfmt from source
- Don't insert trailing comma on (base-less) rest in struct literals within macros (#4675)
- crates.io package - pending
- rustup (nightly) - Starting in
2021-01-31
- GitHub Release Binaries - Release v1.4.34
- Build from source - Tag v1.4.34, see instructions for how to install rustfmt from source
merge_imports
configuration has been deprecated in favor of the newimports_granularity
option. Any existing usage ofmerge_imports
will be automatically mapped to the corresponding value onimports_granularity
with a warning message printed to encourage users to update their config files.
- New
imports_granularity
option has been added which succeedsmerge_imports
. This new option supports several additional variants which allow users to merge imports at different levels (crate or module), and even flatten imports to have a single use statement per item. (PR #4634, PR #4639)
See the section on the configuration site for more information https://rust-lang.github.io/rustfmt/?version=v1.4.33&search=#imports_granularity
- Fix erroneous removal of
const
keyword on const trait impl (#4084) - Fix incorrect span usage wit const generics in supertraits (#4204)
- Use correct span for const generic params (#4263)
- Correct span on const generics to include type bounds (#4310)
- Idempotence issue on blocks containing only empty statements (#4627 and #3868)
- Fix issue with semicolon placement on required functions that have a trailing comment that ends in a line-style comment before the semicolon (#4646)
- Avoid shared interned cfg_if symbol since rustfmt can re-initialize the rustc_ast globals on multiple inputs (#4656)
- crates.io package - pending
- rustup (nightly) - n/a (superseded by v1.4.34)
- GitHub Release Binaries - Release v1.4.33
- Build from source - Tag v1.4.33, see instructions for how to install rustfmt from source
- Indentation now correct on first bound in cases where the generic bounds are multiline formatted and the first bound itself is multiline formatted (#4636)
- crates.io package - pending
- rustup (nightly) - Starting in
2021-01-18
- GitHub Release Binaries - Release v1.4.32
- Build from source - Tag v1.4.32, see instructions for how to install rustfmt from source
rustc-ap-*
crates updated to v697.0.0
- Support for 2021 Edition #4618)
- crates.io package - pending
- rustup (nightly) - Starting in
2021-01-16
- GitHub Release Binaries - Release v1.4.31
- Build from source - Tag v1.4.31, see instructions for how to install rustfmt from source
- Last character in derive no longer erroneously stripped when
indent_style
is overridden toVisual
. (#4584) - Brace wrapping of closure bodies maintained in cases where the closure has an explicit return type and the body consists of a single expression statement. (#4577)
- No more panics on invalid code with
err
andtypeof
types (#4357, #4586)
- crates.io package - pending
- rustup (nightly) - Starting in
2020-12-25
- GitHub Release Binaries - Release v1.4.30
- Build from source - Tag v1.4.30, see instructions for how to install rustfmt from source
- Negative polarity on non-trait impl now preserved. (#4566)
- crates.io package - pending
- rustup (nightly) - Starting in
2020-12-07
- GitHub Release Binaries - Release v1.4.29
- Build from source - Tag v1.4.29, see instructions for how to install rustfmt from source
rustc-ap-*
crates updated to v691.0.0- In the event of an invalid inner attribute on a
cfg_if
condition, rustfmt will now attempt to continue and format the imported modules. Previously rustfmt would emit the parser error about an inner attribute being invalid in this position, but for rustfmt's purposes the invalid attribute doesn't prevent nor impact module formatting.
group_imports
- a new configuration option that allows users to control the strategy used for grouping imports (#4107)
- Formatting of malformed derived attributes is no longer butchered. (#3898, #4029, #4115, #4545)
- Correct indentation used in macro branches when
hard_tabs
is enabled. (#4152) - Comments between the visibility modifier and item name are no longer dropped. (#2781)
- Comments preceding the assignment operator in type aliases are no longer dropped. (#4244)
- Comments between {
&
operator, lifetime,mut
kw, type} are no longer dropped. (#4245) - Comments between type bounds are no longer dropped. (#4243)
- Function headers are no longer dropped on foreign function items. (#4288)
- Foreign function blocks are no longer dropped. (#4313)
where_single_line
is no longer incorrectly applied to multiline function signatures that have nowhere
clause. (#4547)matches!
expressions with multiple patterns and a destructure pattern are now able to be formatted. (#4512)
- crates.io package - pending
- rustup (nightly) - n/a (superseded by v1.4.29)
- GitHub Release Binaries - Release v1.4.28
- Build from source - Tag v1.4.28, see instructions for how to install rustfmt from source
- Leading comments in an extern block are no longer dropped (a bug that exists in v1.4.26). (#4528)
- crates.io package - pending
- rustup (nightly) - Starting in
2020-11-18
- GitHub Release Binaries - Release v1.4.27
- Build from source - Tag v1.4.27, see instructions for how to install rustfmt from source
- Original comment indentation for trailing comments within an
if
is now taken into account when determining the indentation level to use for the trailing comment in formatted code. This does not modify any existing code formatted with rustfmt; it simply gives the programmer discretion to specify whether the comment is associated to theelse
block, or if the trailing comment is just a member of theif
block. (#1575, #4120, #4506)
In this example the // else comment
refers to the else
:
// if comment
if cond {
"if"
// else comment
} else {
"else"
}
Whereas in this case the // continue
comments are members of their respective blocks and do not refer to the else
below.
if toks.eat_token(Token::Word("modify"))? && toks.eat_token(Token::Word("labels"))? {
if toks.eat_token(Token::Colon)? {
// ate the token
} else if toks.eat_token(Token::Word("to"))? {
// optionally eat the colon after to, e.g.:
// @rustbot modify labels to: -S-waiting-on-author, +S-waiting-on-review
toks.eat_token(Token::Colon)?;
} else {
// It's okay if there's no to or colon, we can just eat labels
// afterwards.
}
1 + 2;
// continue
} else if toks.eat_token(Token::Word("label"))? {
// continue
} else {
return Ok(None);
}
- Formatting of empty blocks with attributes which only contained comments is no longer butchered.(#4475, #4467, #4452, #4522)
- Indentation of trailing comments in non-empty extern blocks is now correct. (#4120)
- crates.io package - pending
- rustup (nightly) - Starting in
2020-11-16
- GitHub Release Binaries - Release v1.4.26
- Build from source - Tag v1.4.26, see instructions for how to install rustfmt from source
- Semicolons are no longer automatically inserted on trailing expressions in macro definition arms (#4507). This gives the programmer control and discretion over whether there should be semicolons in these scenarios so that potential expansion issues can be avoided.
- crates.io package - pending
- rustup (nightly) - Starting in
2020-11-14
- GitHub Release Binaries - Release v1.4.25
- Build from source - Tag v1.4.25, see instructions for how to install rustfmt from source
- Block wrapped match arm bodies containing a single macro call expression are no longer flattened (#4496). This allows programmer discretion so that the block wrapping can be preserved in cases where needed to prevent issues in expansion, such as with trailing semicolons, and aligns with updated Style Guide guidance for such scenarios.
- Remove useless
deprecated
attribute on a trait impl block in the rustfmt lib, as these now trigger errors (rust-lang/rust/#78626)
- crates.io package - pending
- rustup (nightly) - Starting in
2020-11-09
- GitHub Release Binaries - Release v1.4.24
- Build from source - Tag v1.4.24, see instructions for how to install rustfmt from source
- Update
rustc-ap-*
crates to v686.0.0
- Initial support for formatting new ConstBlock syntax (#4478)
- Handling of unclosed delimiter-only parsing errors in input files (#4466)
- Misc. minor parser bugs (#4418 and #4431)
- Panic on nested tuple access (#4355)
- Unable to disable license template path via cli override (#4487)
- Preserve comments in empty statements #4018)
- Indentation on skipped code #4398)
- crates.io package - pending
- rustup (nightly) - n/a (superseded by v1.4.24)
- GitHub Release Binaries - Release v1.4.23
- Build from source - Tag v1.4.23, see instructions for how to install rustfmt from source
- Update
rustc-ap-*
crates to v679.0.0 - Add config option to allow control of leading match arm pipes
- Support
RUSTFMT
environment variable incargo fmt
to run specifiedrustfmt
instance
- Fix preservation of type aliases within extern blocks
- Update
rustc-ap-*
crates to 606.0.0.
- Fix aligning comments of different group
- Fix flattening imports with a single
self
. - Fix removing attributes on function parameters.
- Fix removing
impl
keyword from opaque type.
- Update
rustc-ap-*
crates to 583.0.0.
- Add
--config
command line option.
- Update
rustc-ap-*
crates to 581.0.0. - rustfmt now do not warn against trailing whitespaces inside macro calls.
- Fix
merge_imports
generating invalid code. - Fix removing discriminant values on enum variants.
- Fix modules defined inside
cfg_if!
not being formatted. - Fix minor formatting issues.
- Add
--message-format
command line option tocargo-fmt
. - Add
-l,--files-with-diff
command line option torustfmt
. - Add
json
emit mode.
- Fix removing attributes on struct pattern's fields.
- Fix non-idempotent formatting of match arm.
- Fix
merge_imports
generating invalid code. - Fix imports with
#![macro_use]
getting reordered withreorder_imports
. - Fix calculation of line numbers in checkstyle output.
- Fix poor formatting of complex fn type.
- Fix generating invalid code when formatting an impl block with const generics inside a where clause.
- Fix adding a trailing space after a
dyn
keyword which is used as a macro argument by itself.
- Fix
cargo fmt
incorrectly formatting crates that is not part of the workspace or the path dependencies. - Fix removing a trailing comma from a tuple pattern.
- Update
rustc-ap-*
crates to 546.0.0.
- Fix an underscore pattern getting removed.
- Explicitly require the version of
rustfmt-config_proc_macro
to be 0.1.2 or later.
- Update
rustc-ap-*
crates to 542.0.0.
- Add new attribute
rustfmt::skip::attributes
to prevent rustfmt from formatting an attribute #3665
- Update
rustc-ap-*
crates to 541.0.0. - Remove multiple semicolons.
- Add
--manifest-path
support tocargo fmt
(#3683).
- Fix
cargo fmt -- --help
printing nothing (#3620). - Fix inserting an extra comma (#3677).
- Fix incorrect handling of CRLF with
file-lines
(#3684). - Fix
print-config=minimal
option (#3687).
- Fix rustfmt crashing when
await!
macro call is used in a method chain. - Fix rustfmt not recognizing a package whose name differs from its directory's name.
- Implement the
Display
trait on the types ofConfig
.
ignore
configuration option now only supports paths separated by/
. Windows-style paths are not supported.- Running
cargo fmt
in a sub-directory of a project is now supported.
- Fix bugs that may cause rustfmt to crash.
- Format modules defined inside
cfg_if
macro calls #3600
- Change option
format_doc_comment
toformat_code_in_doc_comment
. use_small_heuristics
changed to be an enum and stabilised. Configuration options are now ready for 1.0.- Stabilise
fn_args_density
configuration option and rename it tofn_args_layout
#3581 - Update
rustc-ap-*
crates to 486.0.0 - Ignore sub-modules when skip-children is used #3607
- Removed bitrig support #3608
wrap_comments
should not implyformat_doc_comments
#3535- Incorrect handling of const generics #3555
- Add the handling for
vec!
with paren inside macro #3576 - Format trait aliases with where clauses #3586
- Catch panics from the parser while rewriting macro calls #3589
- Fix erasing inner attributes in struct #3593
- Inline the attribute with its item even with the
macro_use
attribute or whenreorder_imports
is disabled #3598 - Fix the bug add unwanted code to impl #3602
- Fix processing of
ignore
paths #3522 - Attempt to format attributes if only they exist #3523
- Add
--print-config current
CLI option b473e65 - Create GitHub page for Configuration.md #3485
- Keep comment appearing between parameter's name and its type #3491
- Do not delete semicolon after macro call with square brackets #3500
- Fix
--version
CLI option #3506 - Fix duplication of attributes on a match arm's body #3510
- Avoid overflowing item with attributes #3511
- Add new attribute
rustfmt::skip::macros
to prevent rustfmt from formatting a macro #3454
- Discard error report in silent_emitter #3466
- Fix bad performance on deeply nested binary expressions #3467
- Use BTreeMap to guarantee consistent ordering b4d4b57
- Avoid panic on macro inside deeply nested block c9479de
- Fix line numbering in missed spans and handle file_lines in edge cases cdd08da
- Fix formatting of async blocks 1fa06ec
- Avoid duplication on the presence of spaces between macro name and
!
#3464
- Add
inline_attribute_width
configuration option to write an item and its attribute on the same line if their combined width is below a threshold #3409 - Support
const
generics f0c861b - Support path clarity module #3448
- Align loop and while formatting 7d9a2ef
- Support
EmitMode::ModifiedLines
with stdin input #3424 - Update
rustc-ap-*
crates to 407.0.0 - Remove trailing whitespaces in missing spans 2d5bc69
- Do not remove comment in the case of no arg 8e3ef3e
- Fix
Ident of macro+ident gets duplicated
error 40ff078 - Format the if expression at the end of the block in a single line 5f3dfe6
- Point unstable options to tracking issues 412dcc7
- Update
rustc-ap-*
crates to 373.0.0
- Add a section to the Contributing.md file about version-gating formatting changes 36e2cb0
- Allow specifying package with
-p
CLI option a8d2591 - Support
rustfmt::skip
on imports #3289 - Support global
rustfmt.toml
to be written in user config directory #3280 - Format visibility on trait alias 96a3df3
- Do not modify original source code inside macro call #3260
- Recognize strings inside comments in order to avoid indenting them baa62c6
- Use Unicode-standard char width to wrap comments or strings a01990c
- Change new line point in the case of no args #3294
- Use the same formatting rule between functions and macros #3298
- Update rustc-ap-rustc_target to 366.0.0, rustc-ap-syntax to 366.0.0, and rustc-ap-syntax_pos to 366.0.0
- rewrite_comment: fix block fallback when failing to rewrite an itemized block ab7f4e1
- Catch possible tokenizer panics #3240
- Fix macro indentation on Windows #3266
- Fix shape when formatting return or break expr on statement position #3259
- rewrite_comment: fix block fallback when failing to rewrite an itemized block
- Keep leading double-colon to respect the 2018 edition of rust's paths a2bfc02
- Fix glob and nested global imports 2125ad2
- Do not force trailing comma when using mixed layout #3306
- Prioritize
single_line_fn
andempty_item_single_line
overbrace_style
#3308 - Fix
internal error: left behind trailing whitespace
with long lines c2534f5 - Fix attribute duplication #3325
- Fix formatting of strings within a macro 813aa79
- Handle a macro argument with a single keyword 9a7ea6a
- Add a
version
option 378994b
- End expressions like return/continue/break with a semicolon #3223
- Update rustc-ap-rustc_target to 306.0.0, rustc-ap-syntax to 306.0.0, and rustc-ap-syntax_pos to 306.0.0
- Allow to run a rustfmt command from cargo-fmt even when there is no target a2da636
- Fix
un-closed delimiter
errors when formatting break labels 40174e9
- Preserve possibly one whitespace for brace macros 1a3bc79
- Prefer to break arguments over putting output type on the next line 1dd54e6
- Update rustc-ap-rustc_target to 297.0.0, rustc-ap-syntax to 297.0.0, to rustc-ap-syntax_pos to 297.0.0
- Don't align comments on
extern crate
s dd7add7
- Add
overflow_delimited_expr
config option to more aggressively allow overflow #3175
- Fix the logic for retaining a comment before the arrow in a match #3181
- Do not wrap comments in doctest to avoid failing doctest runs #3183
- Fix comment rewriting that was wrapping code into a line comment #3188
- Fix formatting of unit-struct with
where
-clause #3200
- Force a newline after the
if
condition if there is a different indentation level #3109 - Use correct width when formatting type on local statement #3126
- Treat crates non-alphabetically when ordering 799005f
- Fix formatting of code that is annotated with rustfmt::skip #3113
- Stabilize
edition
configuration option 9c3ae2d - cargo-fmt: detect Rust edition in use #3129
- Trim the indentation on macros which heuristically appear to use block-style indentation #3178
- Do not remove path disambiguator inside macro #3142
- Improve handling of Windows newlines #3141
- Fix alignment of a struct's fields (
struct_field_align_threshold
option) with the Visualindent_style
#3165 - Fix a bug in formatting markdown lists within comments #3172
- Add
enum_discrim_align_threshold
option to vertically align enum discriminants cc22869 - Add
println!
-like heuristic to thefail
attribute #3067 - Handle itemized items inside comments #3083
- Add
format_doc_comments
configuration option to control the formatting of code snippets inside comments #3089
- Makes brace behavior consistent with empty bodies for traits and impls 2727d41
- Consider a multi-lined array as a block-like expression #3969
- Improve formatting of strings #3073
- Get rid of extra commas in Visual struct literal formatting #3077
- Update rustc-ap-rustc_target to 274.0.0, rustc-ap-syntax to 274.0.0, and rustc-ap-syntax_pos to 274.0.0
- Format macro calls with item-like arguments #3080
- Avoid control flow expressions conditions to go multi line ef59b34
- Simplify multi-lining binop expressions #3101
- Do not format a code block in documentation if it is annotated with ignore or text 2bcc3a9
- Fix inconsistent overflow behavior in Visual style #3078
- Fix corner cases of the string formatting implementation #3083
- Do not add parens around lifetimes 0ac68c9
- Catch parser panic in format_snippet 8c4e92a
- Handle leading module separator for 2018 Edition #2952
- Add configuration option
normalize_doc_attributes
: convert doc attributes to comments #3002
- Accept 2015 and 2018 instead of Edition2015 and Edition2018 for edition option eec7436
- Support platforms without a timer 46e2a2e
- Update rustc-ap-rustc_target to 263.0.0, rustc-ap-syntax to 263.0.0, and rustc-ap-syntax_pos to 263.0.0
- Format of attributes with commas #2971
- Fix optional arg condensing #2972
- Improve formatting of long function parameters #2981
- Fix formatting of raw string literals #2983
- Handle chain with try operators with spaces #2986
- Use correct shape in Visual tuple rewriting #2987
- Improve formatting of arguments with
visual_style = "Visual"
option #2988 - Change
print_diff
to output the correct line number 992b179 - Propagate errors about failing to rewrite a macro 6f318e3
- Handle formatting of long function signature #3010
- Fix indent computation of a macro with braces c3edf6d
- Format generics on associated types #3035
- Incorrect indentation of multiline block match expression #3042
- Fix bug in import where two consecutive module separators were possible 98a0ef2
- Prevent right-shifting of block comments with bare lines 5fdb6db
- Handle formatting of underscore imports #2951
- Handle formatting of try blocks #2965
- Update rustc-ap-rustc_target to 237.0.0, rustc-ap-syntax to 237.0.0, and rustc-ap-syntax_pos to 237.0.0 ca19c9a
- Consider
dev
channel as nightly for unstable features #2948
- Fix formatting of patterns with ellipsis # 2942
- Use path attribute when searching for modules #2901
- Expose FileLines JSON representation to allow external libraries to use the file_lines option #2915
- Replace '--config-help' with '--config=help' cb10e06
- Improve formatting of slice patterns #2912
- Format chains with comment #2899
- Fix indentation of formatted macro body #2920
- Fix indentation of block comments f23e6aa
- Update rustc-ap-rustc_target to 218.0.0, rustc-ap-syntax to 218.0.0, and rustc-ap-syntax_pos to 218.0.0 5c9a2b6
- Combine function-like attributes #2900
- Explicitly handle semicolon after the item in statement position d96e3ca
- Fix parsing '#'-hiding of rustdoc 2eca09e
- fix use statements ordering when a number is present 1928ae7
- 1.0 RC release
- Clarification in README.md 30fe66b
- Handle raw identifiers 3027c21
- Format async closure 60ce411
- Add max_width option for all heuristics c2ae39e
- Add config option
format_macro_matchers
to format the metavariable matching patterns in macros 79c5ee8 - Add config option
format_macro_bodies
to format the bodies of macros 79c5ee8 - Format existential type fc307ff
- Support raw identifiers in struct expressions f121b1a
- Format Async block and async function 0b25f60
- Update rustc-ap-rustc_target to 211.0.0, rustc-ap-syntax to 211.0.0, and rustc-ap-syntax_pos to 211.0.0
- Put each nested import on its own line while putting non-nested imports on the same line as much as possible 42ab258
- Respect
empty_item_single_line
config option when formatting empty impls. Put thewhere
on its own line to improve readability #2771 - Strip leading
|
in match arm patterns 1d4b988 - Apply short function call heuristic to attributes 3abebf9
- Indent a match guard if the pattern is multiline be4d37d
- Change default newline style to
Native
9d8f381 - Improve formatting of series of binop expressions a4cdb68
- Trigger an internal error if we skip formatting due to a lost comment b085113
- Refactor chain formatting #2838
- Do not insert spaces around braces with empty body or multiple lines 2f65852
- Allow using mixed layout with comments #2766
- Handle break labels #2726
- fix rewrite_string when a line feed is present 472a2ed
- Fix an anomaly with comments and array literals b28a0cd
- Check for comments after the
=>
in a match arm 6899471
- Use scoped attributes for skip attribute #2703
- Comment options
wrap_comments
andnormalize_comments
are reverted back to unstable 416bc4c - Stabilise
reorder_imports
andreorder_modules
options 7b6d2b4 - Remove
spaces_within_parens_and_brackets
option d726492 - Stabilise shorthand options:
use_try_shorthand
,use_field_init_shorthand
, andforce_explicit_abi
8afe367 - Stabilise
remove_nested_parens
and set default to true a70f716 - Unstabilise
unstable_features
dd9c15a - Remove
remove_blank_lines_at_start_or_end_of_block
option 2ee8b0e - Update rustc-ap-syntax to 146.0.0 and rustc-ap-rustc_target to 146.0.0 2c275a2
- Audit the public API #2639
- Handle code block in doc comment without rust prefix f1974e2
- Add integration tests against crates in the rust-lang-nursery c79f39a
- Update rustc-ap-syntax to 128.0.0 and rustc-ap-rustc_target to 128.0.0 195395f
- Put operands on its own line when each fits in a single line f8439ce
- Improve CLI options 55ac062 1869888 798bffb 4d9de48 eca7796 8396da1 5d9f5aa
- Use correct line width for list attribute 61a401a
- Avoid flip-flopping impl items when reordering them 37c216c
- Formatting breaks short lines when max_width is less than 100 9b36156
- Fix variant "Mixed" of imports_layout option 8c8676c
- Improve handling of long lines f885039
- Fix up lines exceeding max width 51c07f4
- Fix handling of modules in non_modrs_mods style cf573e8
- Do not duplicate attributes on use items e59ceaf
- Do not insert an extra brace in macros with native newlines 4c9ef93
- Change the default value of imports_indent to IndentStyle::Block #2662
- Handle formatting of auto traits 5b5a72c
- Use consistent formatting for empty enum and struct #2656
- Improve public API 8669004
- Add
verbose-diff
CLI option 5194984
- Update rustc-ap-syntax to 103.0.0 dd807e2
- Refactor to make a sensible public API ca610d3
- Add spaces between consecutive
..
..=
61d29eb
- Handle binary operators and lifetimes 0fd174d
- Add reorder_impl_items config option 94f5a05
- Add
--unstable-features
CLI option to list unstable options from the--help
output 8208f8a - Add merge_imports config option 5dd203e
- Format macro arguments with vertical layout ec71459
- Reorder imports by default 164cf7d
- Do not collapse block around expr with condition on match arm 5b9b7d5
- Use vertical layout for complex attributes c77708f
- Format array using heuristics for function calls 98c6f7b
- Implement stable ordering for impl items with the following item priority: type, const, macro, then method fa80ddf
- Reorder imports by default 164cf7d
- Group
extern crate
by default 3a138a2 - Make
error_on_line_overflow
false by default f146711 - Merge imports with the same prefix into a single nested import 1954513
- Squash the various 'reorder imports' option into one 911395a
- Print version is missing the channel ca6fc67
- Do not add the beginning vert to the match arm 1e1d9d4
- Follow indent style config when formatting attributes efd295a
- Do not insert newline when item is empty a8022f3
- Do not indent or unindent inside string literal ec1907b
- Add
ignore
configuration option. - Add
license_template_path
configuration option. - Format
lazy_static!
.
- Fix formatting bugs.
- Fix setting
reorder_modules
removing inline modules. - Format attributes on block expressions.
- Support
dyn trait
syntax. - Support multiple patterns in
if let
andwhile let
. - Support a pattern with parentheses.
- Do not print verbose outputs when formatting with stdin.
- Preserve trailing whitespaces in doc comments.
- Scale the values of width heuristics by
max_width
.
- Do not reorder items with
#[macro_use]
. - Fix formatting bugs.
- Support the beginning
|
on a match arm.
- Format (or at least try to format)
macro_rules!
.
- Add
use_field_init_shorthand
config option. - Add
reorder_modules
configuration option.
- Fix panicking on formatting certain macros (#2371).
- Format code block in comments when
wrap_comments
is set totrue
. - Remove
same_line_attributes
configuration option. - Rename
git-fmt
togit-rustfmt
.
- Rustup to
rustc 1.25.0-nightly (e6072a7b3 2018-01-13)
. - Fix formatting bugs.
- Add
--version
flag tocargo-fmt
, allowcargo fmt --version
.
- Rustup to
rustc 1.24.0-nightly (5165ee9e2 2017-12-22)
.
- Format trait aliases.
cargo fmt
will format every workspace member.
- Rustup to
rustc 1.24.0-nightly (250b49205 2017-12-21)
- Fix formatting bugs.
- Warn when unknown configuration option is used.
- Rustup to
rustc 1.24.0-nightly (0077d128d 2017-12-14)
.
- Add
error_on_unformatted
configuration option. - Add
--error-on-unformatted
command line option.
- Do not report formatting errors on comments or strings by default.
- Rename
error_on_line_overflow_comments
toerror_on_unformatted
.
- Fix formatting bugs.
- Fix adding a trailing whitespace inside code block when
wrap_comments = true
.
- Support nested imports.
- Do not report errors on skipped items.
- Do not format code block inside comments when
wrap_comments = true
. - Keep vertical spaces between items within range.
- Format
format!
and its variants using compressed style. - Format
write!
and its variants using compressed style. - Format simple array using compressed style.
- Fix
rustfmt --package package_name
not working properly. - Fix formatting bugs.
- Add
blank_lines_lower_bound
andblank_lines_upper_bound
configuration options.
- Combine configuration options related to width heuristic into
width_heuristic
. - If the match arm's body is
if
expression, force to use block.
- Fix
cargo fmt --all
being trapped in an infinite loop. - Fix many formatting bugs.
- Remove legacy configuration options.
- Remove empty lines at the beginning of the file.
- Soft wrapping on doc comments.
- Break before
|
when using multiple lines for match arm patterns. - Combine
control_style
,where_style
and*_indent
config options intoindent_style
. - Combine
item_brace_style
andfn_brace_style
config options intobrace_style
. - Combine config options related spacing around colons into
space_before_colon
andspace_after_colon
.
- Fix many bugs.
- Add git-fmt tool
where_single_line
configuration option.
- Rename
chain_one_line_max
tochain_width
. - Change the suffix of indent-related configuration options to
_indent
.
- Rustup to the latest nightly.
- Rustup to the latest nightly.
- Fix a bug that
cargo fmt
hangs forever.
- Fix a bug that
cargo fmt
crashes.
binop_separator
configuration option (#1964).
- Use horizontal layout for function call with a single argument.
- Fix panicking when calling
cargo fmt --all
(#1963). - Refactorings & faster rustfmt.
- Fix a performance issue with nested block (#1940).
- Refactorings & faster rustfmt.
- Format and preserve attributes on statements (#1933).
- Use getters to access
Span
fields (#1899).
- Add support for
Yield
(#1928).
multiline_closure_forces_block
configuration option (#1898).multiline_match_arm_forces_block
configuration option (#1898).merge_derives
configuration option (#1910).struct_remove_empty_braces
configuration option (#1930).- Various refactorings.
- Put single-lined block comments on the same line with list-like structure's item (#1923).
- Preserve blank line between doc comment and attribute (#1925).
- Put the opening and the closing braces of enum and struct on the same line, even when
item_brace_style = "AlwaysNextLine"
(#1930).
- Format attributes on
ast::ForeignItem
and take max width into account (#1916). - Ignore empty lines when calculating the shortest indent width inside macro with braces (#1918).
- Handle tabs properly inside macro with braces (#1918).
- Fix a typo in
compute_budgets_for_args()
(#1924). - Recover comment between keyword (
impl
andtrait
) and{
which used to get removed (#1925).