Skip to content

Commit 591b056

Browse files
Merge commit 'c4416f20dcaec5d93077f72470e83e150fb923b1' into sync-rustfmt
2 parents 10f4ce3 + c4416f2 commit 591b056

39 files changed

+533
-11633
lines changed

src/tools/rustfmt/.github/workflows/linux.yml

+2-12
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,5 @@ jobs:
3535
sh rustup-init.sh -y --default-toolchain none
3636
rustup target add ${{ matrix.target }}
3737
38-
- name: build
39-
run: |
40-
rustc -Vv
41-
cargo -V
42-
cargo build
43-
env:
44-
RUSTFLAGS: '-D warnings'
45-
46-
- name: test
47-
run: cargo test
48-
env:
49-
RUSTFLAGS: '-D warnings'
38+
- name: Build and Test
39+
run: ./ci/build_and_test.sh

src/tools/rustfmt/.github/workflows/mac.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,5 @@ jobs:
3232
sh rustup-init.sh -y --default-toolchain none
3333
rustup target add ${{ matrix.target }}
3434
35-
- name: build
36-
run: |
37-
rustc -Vv
38-
cargo -V
39-
cargo build
40-
41-
- name: test
42-
run: cargo test
35+
- name: Build and Test
36+
run: ./ci/build_and_test.sh

src/tools/rustfmt/.github/workflows/windows.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,6 @@ jobs:
5757
if: matrix.target == 'x86_64-pc-windows-gnu' && matrix.channel == 'nightly'
5858
shell: bash
5959

60-
- name: build
61-
run: |
62-
rustc -Vv
63-
cargo -V
64-
cargo build
65-
shell: cmd
66-
67-
- name: test
68-
run: cargo test
60+
- name: Build and Test
6961
shell: cmd
62+
run: ci\build_and_test.bat

src/tools/rustfmt/CHANGELOG.md

+24-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,29 @@
22

33
## [Unreleased]
44

5-
## [1.5.0] 2022-06-13
5+
## [1.5.1] 2022-06-24
6+
7+
**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.
8+
9+
### Fixed
10+
11+
- 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)
12+
- `cargo fmt --version` properly displays the version value again [#5395](https://github.com/rust-lang/rustfmt/issues/5395)
13+
14+
### Changed
15+
16+
- Properly sort imports containing raw identifiers [#3791](https://github.com/rust-lang/rustfmt/issues/3791) (note this is change version gated, and not applied by default)
17+
18+
### Added
19+
20+
- 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](https://github.com/rust-lang/rustfmt/issues/5384)
21+
22+
### Install/Download Options
23+
- **rustup (nightly)** - nightly-2022-06-24
24+
- **GitHub Release Binaries** - [Release v1.5.1](https://github.com/rust-lang/rustfmt/releases/tag/v1.5.0)
25+
- **Build from source** - [Tag v1.5.1](https://github.com/rust-lang/rustfmt/tree/v1.5.1), see instructions for how to [install rustfmt from source][install-from-source]
26+
27+
## [1.5.0] 2022-06-14
628

729
### Changed
830

@@ -75,7 +97,7 @@
7597
- Improved performance when formatting large and deeply nested expression trees, often found in generated code, which have many expressions that exceed `max_width` [#5128](https://github.com/rust-lang/rustfmt/issues/5128), [#4867](https://github.com/rust-lang/rustfmt/issues/4867), [#4476](https://github.com/rust-lang/rustfmt/issues/4476), [#5139](https://github.com/rust-lang/rustfmt/pull/5139)
7698

7799
### Install/Download Options
78-
- **rustup (nightly)** - *pending*
100+
- **rustup (nightly)** - nightly-2022-06-15
79101
- **GitHub Release Binaries** - [Release v1.5.0](https://github.com/rust-lang/rustfmt/releases/tag/v1.5.0)
80102
- **Build from source** - [Tag v1.5.0](https://github.com/rust-lang/rustfmt/tree/v1.5.0), see instructions for how to [install rustfmt from source][install-from-source]
81103

src/tools/rustfmt/Cargo.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ dependencies = [
485485

486486
[[package]]
487487
name = "rustfmt-nightly"
488-
version = "1.5.0"
488+
version = "1.5.1"
489489
dependencies = [
490490
"annotate-snippets",
491491
"anyhow",

src/tools/rustfmt/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustfmt-nightly"
4-
version = "1.5.0"
4+
version = "1.5.1"
55
description = "Tool to find and fix Rust formatting issues"
66
repository = "https://github.com/rust-lang/rustfmt"
77
readme = "README.md"
@@ -65,3 +65,7 @@ rustfmt-config_proc_macro = { version = "0.2", path = "config_proc_macro" }
6565
rustc-workspace-hack = "1.0.0"
6666

6767
# Rustc dependencies are loaded from the sysroot, Cargo doesn't know about them.
68+
69+
[package.metadata.rust-analyzer]
70+
# This package uses #[feature(rustc_private)]
71+
rustc_private = true

src/tools/rustfmt/Configurations.md

+8
Original file line numberDiff line numberDiff line change
@@ -926,6 +926,14 @@ fn add_one(x: i32) -> i32 {
926926
}
927927
```
928928

929+
## `doc_comment_code_block_width`
930+
931+
Max width for code snippets included in doc comments. Only used if [`format_code_in_doc_comments`](#format_code_in_doc_comments) is true.
932+
933+
- **Default value**: `100`
934+
- **Possible values**: any positive integer that is less than or equal to the value specified for [`max_width`](#max_width)
935+
- **Stable**: No (tracking issue: [#5359](https://github.com/rust-lang/rustfmt/issues/5359))
936+
929937
## `format_generated_files`
930938

931939
Format generated files. A file is considered generated
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
set "RUSTFLAGS=-D warnings"
2+
3+
:: Print version information
4+
rustc -Vv || exit /b 1
5+
cargo -V || exit /b 1
6+
7+
:: Build and test main crate
8+
cargo build --locked || exit /b 1
9+
cargo test || exit /b 1
10+
11+
:: Build and test other crates
12+
cd config_proc_macro || exit /b 1
13+
cargo build --locked || exit /b 1
14+
cargo test || exit /b 1
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
export RUSTFLAGS="-D warnings"
6+
7+
# Print version information
8+
rustc -Vv
9+
cargo -V
10+
11+
# Build and test main crate
12+
cargo build --locked
13+
cargo test
14+
15+
# Build and test other crates
16+
cd config_proc_macro
17+
cargo build --locked
18+
cargo test

src/tools/rustfmt/ci/integration.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set -ex
1515
# it again.
1616
#
1717
#which cargo-fmt || cargo install --force
18-
CFG_RELEASE=nightly CFG_RELEASE_CHANNEL=nightly cargo install --path . --force
18+
CFG_RELEASE=nightly CFG_RELEASE_CHANNEL=nightly cargo install --path . --force --locked
1919

2020
echo "Integration tests for: ${INTEGRATION}"
2121
cargo fmt -- --version
+22-22
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,68 @@
11
# This file is automatically @generated by Cargo.
22
# It is not intended for manual editing.
3+
version = 3
4+
35
[[package]]
46
name = "proc-macro2"
57
version = "1.0.3"
68
source = "registry+https://github.com/rust-lang/crates.io-index"
9+
checksum = "e98a83a9f9b331f54b924e68a66acb1bb35cb01fb0a23645139967abefb697e8"
710
dependencies = [
8-
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
11+
"unicode-xid",
912
]
1013

1114
[[package]]
1215
name = "quote"
1316
version = "1.0.2"
1417
source = "registry+https://github.com/rust-lang/crates.io-index"
18+
checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
1519
dependencies = [
16-
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
20+
"proc-macro2",
1721
]
1822

1923
[[package]]
2024
name = "rustfmt-config_proc_macro"
21-
version = "0.1.2"
25+
version = "0.2.0"
2226
dependencies = [
23-
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
24-
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
25-
"serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)",
26-
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
27+
"proc-macro2",
28+
"quote",
29+
"serde",
30+
"syn",
2731
]
2832

2933
[[package]]
3034
name = "serde"
3135
version = "1.0.99"
3236
source = "registry+https://github.com/rust-lang/crates.io-index"
37+
checksum = "fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f"
3338
dependencies = [
34-
"serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)",
39+
"serde_derive",
3540
]
3641

3742
[[package]]
3843
name = "serde_derive"
3944
version = "1.0.99"
4045
source = "registry+https://github.com/rust-lang/crates.io-index"
46+
checksum = "cb4dc18c61206b08dc98216c98faa0232f4337e1e1b8574551d5bad29ea1b425"
4147
dependencies = [
42-
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
43-
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
44-
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
48+
"proc-macro2",
49+
"quote",
50+
"syn",
4551
]
4652

4753
[[package]]
4854
name = "syn"
4955
version = "1.0.5"
5056
source = "registry+https://github.com/rust-lang/crates.io-index"
57+
checksum = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf"
5158
dependencies = [
52-
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
53-
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
54-
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
59+
"proc-macro2",
60+
"quote",
61+
"unicode-xid",
5562
]
5663

5764
[[package]]
5865
name = "unicode-xid"
5966
version = "0.2.0"
6067
source = "registry+https://github.com/rust-lang/crates.io-index"
61-
62-
[metadata]
63-
"checksum proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e98a83a9f9b331f54b924e68a66acb1bb35cb01fb0a23645139967abefb697e8"
64-
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
65-
"checksum serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" = "fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f"
66-
"checksum serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" = "cb4dc18c61206b08dc98216c98faa0232f4337e1e1b8574551d5bad29ea1b425"
67-
"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf"
68-
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
68+
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"

src/tools/rustfmt/config_proc_macro/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ pub fn config_type(_args: TokenStream, input: TokenStream) -> TokenStream {
2929
/// Used to conditionally output the TokenStream for tests that need to be run on nightly only.
3030
///
3131
/// ```rust
32+
/// # use rustfmt_config_proc_macro::nightly_only_test;
33+
///
3234
/// #[nightly_only_test]
3335
/// #[test]
3436
/// fn test_needs_nightly_rustfmt() {
@@ -49,6 +51,8 @@ pub fn nightly_only_test(_args: TokenStream, input: TokenStream) -> TokenStream
4951
/// Used to conditionally output the TokenStream for tests that need to be run on stable only.
5052
///
5153
/// ```rust
54+
/// # use rustfmt_config_proc_macro::stable_only_test;
55+
///
5256
/// #[stable_only_test]
5357
/// #[test]
5458
/// fn test_needs_stable_rustfmt() {

src/tools/rustfmt/rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2022-06-06"
2+
channel = "nightly-2022-06-21"
33
components = ["rustc-dev"]

src/tools/rustfmt/src/cargo-fmt/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ use std::path::{Path, PathBuf};
1414
use std::process::Command;
1515
use std::str;
1616

17-
use clap::{CommandFactory, Parser};
17+
use clap::{AppSettings, CommandFactory, Parser};
1818

1919
#[path = "test/mod.rs"]
2020
#[cfg(test)]
2121
mod cargo_fmt_tests;
2222

2323
#[derive(Parser)]
2424
#[clap(
25+
global_setting(AppSettings::NoAutoVersion),
2526
bin_name = "cargo fmt",
2627
about = "This utility formats all bin and lib files of \
2728
the current crate using rustfmt."

src/tools/rustfmt/src/comment.rs

+4
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,10 @@ impl<'a> CommentRewrite<'a> {
730730
{
731731
let mut config = self.fmt.config.clone();
732732
config.set().wrap_comments(false);
733+
let comment_max_width = config
734+
.doc_comment_code_block_width()
735+
.min(config.max_width());
736+
config.set().max_width(comment_max_width);
733737
if let Some(s) =
734738
crate::format_code_block(&self.code_block_buffer, &config, false)
735739
{

src/tools/rustfmt/src/config/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ create_config! {
5757
// Comments. macros, and strings
5858
wrap_comments: bool, false, false, "Break comments to fit on the line";
5959
format_code_in_doc_comments: bool, false, false, "Format the code snippet in doc comments.";
60+
doc_comment_code_block_width: usize, 100, false, "Maximum width for code snippets in doc \
61+
comments. No effect unless format_code_in_doc_comments = true";
6062
comment_width: usize, 80, false,
6163
"Maximum length of comments. No effect unless wrap_comments = true";
6264
normalize_comments: bool, false, false, "Convert /* */ comments to // comments where possible";
@@ -532,6 +534,7 @@ chain_width = 60
532534
single_line_if_else_max_width = 50
533535
wrap_comments = false
534536
format_code_in_doc_comments = false
537+
doc_comment_code_block_width = 100
535538
comment_width = 80
536539
normalize_comments = false
537540
normalize_doc_attributes = false

0 commit comments

Comments
 (0)