-
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 #81027 - Xanewok:update-rls, r=calebcartwright
Update RLS and Rustfmt Fixes #80576 Updates Rustfmt to use `rustfmt-v1.4.31` branch. Both are updated (along with `racer`) in tandem to pull in the exact same version of rustc-ap-* libraries. r? `@calebcartwright`
- Loading branch information
Showing
3 changed files
with
49 additions
and
49 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
Submodule rls
updated
17 files
+113 −90 | Cargo.lock | |
+4 −4 | Cargo.toml | |
+3 −4 | rls-data/Cargo.toml | |
+3 −0 | rls-data/src/config.rs | |
+3 −76 | rls-data/src/lib.rs | |
+0 −9,320 | rls-data/src/serde_expanded.rs | |
+2 −0 | rls-ipc/src/rpc.rs | |
+1 −0 | rls-rustc/src/lib.rs | |
+2 −3 | rls-span/Cargo.toml | |
+3 −0 | rls-span/src/compiler.rs | |
+2 −7 | rls-span/src/lib.rs | |
+0 −2,689 | rls-span/src/serde_expanded.rs | |
+1 −0 | rls/src/actions/requests.rs | |
+1 −0 | rls/src/build/ipc.rs | |
+2 −0 | rls/src/build/plan.rs | |
+1 −0 | rls/src/build/rustc.rs | |
+3 −0 | rls/src/project_model.rs |
Submodule rustfmt
updated
20 files
+5 −0 | .github/workflows/upload-assets.yml | |
+12 −1 | .github/workflows/windows.yml | |
+16 −1 | CHANGELOG.md | |
+41 −41 | Cargo.lock | |
+10 −10 | Cargo.toml | |
+2 −2 | Configurations.md | |
+1 −0 | rust-toolchain | |
+0 −1 | src/closures.rs | |
+16 −5 | src/config/options.rs | |
+1 −1 | src/formatting.rs | |
+1 −1 | src/imports.rs | |
+1 −1 | src/items.rs | |
+1 −1 | src/macros.rs | |
+8 −1 | src/spanned.rs | |
+6 −1 | src/types.rs | |
+44 −13 | src/visitor.rs | |
+43 −0 | tests/source/statements.rs | |
+3 −0 | tests/target/imports_2021_edition.rs | |
+1 −1 | tests/target/macro_rules.rs | |
+42 −0 | tests/target/statements.rs |