-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #98412 - calebcartwright:sync-rustfmt, r=calebcartwright
Sync rustfmt We had a bug in the update we made ~1 week ago, so running a somewhat early sync to pull the fix in
- Loading branch information
Showing
40 changed files
with
534 additions
and
11,634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
set "RUSTFLAGS=-D warnings" | ||
|
||
:: Print version information | ||
rustc -Vv || exit /b 1 | ||
cargo -V || exit /b 1 | ||
|
||
:: Build and test main crate | ||
cargo build --locked || exit /b 1 | ||
cargo test || exit /b 1 | ||
|
||
:: Build and test other crates | ||
cd config_proc_macro || exit /b 1 | ||
cargo build --locked || exit /b 1 | ||
cargo test || exit /b 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
export RUSTFLAGS="-D warnings" | ||
|
||
# Print version information | ||
rustc -Vv | ||
cargo -V | ||
|
||
# Build and test main crate | ||
cargo build --locked | ||
cargo test | ||
|
||
# Build and test other crates | ||
cd config_proc_macro | ||
cargo build --locked | ||
cargo test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,68 @@ | ||
# This file is automatically @generated by Cargo. | ||
# It is not intended for manual editing. | ||
version = 3 | ||
|
||
[[package]] | ||
name = "proc-macro2" | ||
version = "1.0.3" | ||
source = "registry+https://github.com/rust-lang/crates.io-index" | ||
checksum = "e98a83a9f9b331f54b924e68a66acb1bb35cb01fb0a23645139967abefb697e8" | ||
dependencies = [ | ||
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"unicode-xid", | ||
] | ||
|
||
[[package]] | ||
name = "quote" | ||
version = "1.0.2" | ||
source = "registry+https://github.com/rust-lang/crates.io-index" | ||
checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" | ||
dependencies = [ | ||
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"proc-macro2", | ||
] | ||
|
||
[[package]] | ||
name = "rustfmt-config_proc_macro" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
dependencies = [ | ||
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"proc-macro2", | ||
"quote", | ||
"serde", | ||
"syn", | ||
] | ||
|
||
[[package]] | ||
name = "serde" | ||
version = "1.0.99" | ||
source = "registry+https://github.com/rust-lang/crates.io-index" | ||
checksum = "fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f" | ||
dependencies = [ | ||
"serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"serde_derive", | ||
] | ||
|
||
[[package]] | ||
name = "serde_derive" | ||
version = "1.0.99" | ||
source = "registry+https://github.com/rust-lang/crates.io-index" | ||
checksum = "cb4dc18c61206b08dc98216c98faa0232f4337e1e1b8574551d5bad29ea1b425" | ||
dependencies = [ | ||
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"proc-macro2", | ||
"quote", | ||
"syn", | ||
] | ||
|
||
[[package]] | ||
name = "syn" | ||
version = "1.0.5" | ||
source = "registry+https://github.com/rust-lang/crates.io-index" | ||
checksum = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" | ||
dependencies = [ | ||
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
"proc-macro2", | ||
"quote", | ||
"unicode-xid", | ||
] | ||
|
||
[[package]] | ||
name = "unicode-xid" | ||
version = "0.2.0" | ||
source = "registry+https://github.com/rust-lang/crates.io-index" | ||
|
||
[metadata] | ||
"checksum proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e98a83a9f9b331f54b924e68a66acb1bb35cb01fb0a23645139967abefb697e8" | ||
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" | ||
"checksum serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" = "fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f" | ||
"checksum serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" = "cb4dc18c61206b08dc98216c98faa0232f4337e1e1b8574551d5bad29ea1b425" | ||
"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" | ||
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" | ||
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "nightly-2022-06-06" | ||
channel = "nightly-2022-06-21" | ||
components = ["rustc-dev"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.