Skip to content

Commit 52019ac

Browse files
committed
Auto merge of #128490 - lnicola:sync-from-ra, r=lnicola
Subtree update of `rust-analyzer` r? `@ghost`
2 parents ae0d816 + 6c9ae75 commit 52019ac

File tree

955 files changed

+15238
-7886
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

955 files changed

+15238
-7886
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
CARGO_NET_RETRY: 10
1616
CI: 1
1717
RUST_BACKTRACE: short
18-
RUSTFLAGS: "-D warnings -W unreachable-pub -W bare-trait-objects"
18+
RUSTFLAGS: "-D warnings -D elided_lifetimes_in_paths -D explicit_outlives_requirements -D unsafe_op_in_unsafe_fn -D unused_extern_crates -D unused_lifetimes -D unreachable_pub"
1919
RUSTUP_MAX_RETRIES: 10
2020

2121
jobs:

.typos.toml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ extend-ignore-re = [
1414
"\\w*\\.{3,4}\\w*",
1515
'"flate2"',
1616
"raison d'être",
17+
"inout",
18+
"optin"
1719
]
1820

1921
[default.extend-words]

.vscode/launch.json

+8-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"args": [
1919
// "--user-data-dir=${workspaceFolder}/target/code",
2020
"--disable-extensions",
21-
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
21+
"--extensionDevelopmentPath=${workspaceFolder}/editors/code",
22+
"--log rust-lang.rust-analyzer:debug"
2223
],
2324
"outFiles": [
2425
"${workspaceFolder}/editors/code/out/**/*.js"
@@ -36,7 +37,8 @@
3637
"runtimeExecutable": "${execPath}",
3738
"args": [
3839
"--disable-extensions",
39-
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
40+
"--extensionDevelopmentPath=${workspaceFolder}/editors/code",
41+
"--log rust-lang.rust-analyzer:debug"
4042
],
4143
"outFiles": [
4244
"${workspaceFolder}/editors/code/out/**/*.js"
@@ -57,7 +59,8 @@
5759
"runtimeExecutable": "${execPath}",
5860
"args": [
5961
"--disable-extensions",
60-
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
62+
"--extensionDevelopmentPath=${workspaceFolder}/editors/code",
63+
"--log rust-lang.rust-analyzer:debug"
6164
],
6265
"outFiles": [
6366
"${workspaceFolder}/editors/code/out/**/*.js"
@@ -79,7 +82,8 @@
7982
"runtimeExecutable": "${execPath}",
8083
"args": [
8184
"--disable-extension", "rust-lang.rust-analyzer",
82-
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
85+
"--extensionDevelopmentPath=${workspaceFolder}/editors/code",
86+
"--log rust-lang.rust-analyzer:debug"
8387
],
8488
"outFiles": [
8589
"${workspaceFolder}/editors/code/out/**/*.js"

0 commit comments

Comments
 (0)