forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
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 rust-lang#98572 - pietroalbini:pa-1.63.0-beta, r=Mark-S…
…imulacrum [beta] Prepare beta 1.63.0 This PR switches the channel of `beta` after the force-push, and backports the following PRs: * rust-lang#98488 * rust-lang#98412 r? `@ghost`
- Loading branch information
Showing
43 changed files
with
538 additions
and
11,638 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nightly | ||
beta |
Submodule rls
updated
12 files
+8 −63 | Cargo.lock | |
+2 −2 | Cargo.toml | |
+0 −1 | racer/Cargo.toml | |
+1 −1 | rls-span/src/compiler.rs | |
+3 −10 | rls-vfs/src/lib.rs | |
+83 −0 | rls-vfs/src/test.rs | |
+2 −2 | rls/src/actions/run.rs | |
+3 −1 | rls/src/config.rs | |
+15 −0 | rls/src/server/mod.rs | |
+1 −1 | rust-toolchain | |
+39 −21 | tests/client.rs | |
+10 −0 | tests/fixtures/lens_run/src/main.rs |
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.