Update to version 1.4.38-nightly from nightly-2022-03-28

Summary:
The changes from the old "rustfmt 2.x" branch, which we upgraded to in D23569308, have since been merged into the master branch of rustfmt under the flag `version = "Two"`. Fixes like needed for https://fb.workplace.com/groups/learningrust/posts/545143730235002 now only land to master; there is no separate 2.x branch in development. This diff pulls in the newest version of rustfmt so that we can handle any new syntax and pick up fixes to rustfmt issues that we report or contribute.

The tools/third-party/rustfmt changes in this diff are generated by:

```
$ echo nightly-2022-03-28 > tools/third-party/rustfmt/.rustfmt-version
$ tools/third-party/rustfmt/rustfmt-upgrade
```

Reviewed By: zertosh

Differential Revision: D35234535

fbshipit-source-id: c79454fa918cf052312418dd271404e85bf872b2
This commit is contained in:
David Tolnay 2022-03-29 20:18:21 -07:00 committed by Facebook GitHub Bot
parent 5b57993cf3
commit ce519e0af4

View file

@ -3,3 +3,4 @@
edition = "2021"
merge_derives = false
use_field_init_shorthand = true
version = "Two"