Skip to content

Commit 468f400

Browse files
committed
Merge commit '0113bc9388b480fa42c632f57f4f0f7af5813ec1' into sync-from-ra
2 parents b11fbfb + 0113bc9 commit 468f400

File tree

197 files changed

+3103
-2004
lines changed

Some content is hidden

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

197 files changed

+3103
-2004
lines changed

src/tools/rust-analyzer/.github/workflows/ci.yaml

+21-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: Switch to stable toolchain
9191
run: |
9292
rustup update --no-self-update stable
93-
rustup component add --toolchain stable rust-src
93+
rustup component add --toolchain stable rust-src clippy
9494
rustup default stable
9595
9696
- name: Run analysis-stats on rust-analyzer
@@ -103,6 +103,10 @@ jobs:
103103
RUSTC_BOOTSTRAP: 1
104104
run: target/${{ matrix.target }}/debug/rust-analyzer analysis-stats --with-deps $(rustc --print sysroot)/lib/rustlib/src/rust/library/std
105105

106+
- name: clippy
107+
if: matrix.os == 'ubuntu-latest'
108+
run: cargo clippy --all-targets
109+
106110
# Weird targets to catch non-portable code
107111
rust-cross:
108112
if: github.repository == 'rust-lang/rust-analyzer'
@@ -203,11 +207,25 @@ jobs:
203207
working-directory: ./editors/code
204208
if: needs.changes.outputs.typescript == 'true'
205209

210+
typo-check:
211+
name: Typo Check
212+
runs-on: ubuntu-latest
213+
timeout-minutes: 10
214+
env:
215+
FORCE_COLOR: 1
216+
TYPOS_VERSION: v1.18.0
217+
steps:
218+
- name: download typos
219+
run: curl -LsSf https://github.com/crate-ci/typos/releases/download/$TYPOS_VERSION/typos-$TYPOS_VERSION-x86_64-unknown-linux-musl.tar.gz | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
220+
221+
- name: check for typos
222+
run: typos
223+
206224
end-success:
207225
name: bors build finished
208226
if: github.event.pusher.name == 'bors' && success()
209227
runs-on: ubuntu-latest
210-
needs: [rust, rust-cross, typescript]
228+
needs: [rust, rust-cross, typescript, typo-check]
211229
steps:
212230
- name: Mark the job as successful
213231
run: exit 0
@@ -216,7 +234,7 @@ jobs:
216234
name: bors build finished
217235
if: github.event.pusher.name == 'bors' && !success()
218236
runs-on: ubuntu-latest
219-
needs: [rust, rust-cross, typescript]
237+
needs: [rust, rust-cross, typescript, typo-check]
220238
steps:
221239
- name: Mark the job as a failure
222240
run: exit 1

src/tools/rust-analyzer/.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ jobs:
4343
- os: ubuntu-20.04
4444
target: arm-unknown-linux-gnueabihf
4545
code-target: linux-armhf
46-
- os: macos-11
46+
- os: macos-12
4747
target: x86_64-apple-darwin
4848
code-target: darwin-x64
49-
- os: macos-11
49+
- os: macos-12
5050
target: aarch64-apple-darwin
5151
code-target: darwin-arm64
5252

src/tools/rust-analyzer/.typos.toml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[default.extend-identifiers]
2+
AnserStyle = "AnserStyle"
3+
datas = "datas"
4+
impl_froms = "impl_froms"
5+
selfs = "selfs"
6+
7+
[default.extend-words]
8+
anser = "anser"
9+
ba = "ba"
10+
fo = "fo"
11+
ket = "ket"
12+
makro = "makro"
13+
raison = "raison"
14+
trivias = "trivias"
15+
TOOD = "TOOD"
16+
17+
[default]
18+
extend-ignore-re = [
19+
# ignore string which contains $x (x is a num), which use widely in test
20+
".*\\$\\d.*",
21+
# ignore generated content like `boxed....nner()`, `Defaul...efault`
22+
"\\w*\\.{3,4}\\w*",
23+
]
24+
25+
[files]
26+
extend-exclude = [
27+
"*.json",
28+
"*.rast",
29+
"crates/parser/test_data/lexer/err/*",
30+
"bench_data/*",
31+
]

src/tools/rust-analyzer/Cargo.lock

+53-22
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
1919

2020
[[package]]
2121
name = "always-assert"
22-
version = "0.1.3"
22+
version = "0.2.0"
2323
source = "registry+https://github.com/rust-lang/crates.io-index"
24-
checksum = "4436e0292ab1bb631b42973c61205e704475fe8126af845c8d923c0996328127"
24+
checksum = "a1078fa1ce1e34b1872d8611ad921196d76bdd7027e949fbe31231abde201892"
2525
dependencies = [
26-
"log",
26+
"tracing",
2727
]
2828

2929
[[package]]
@@ -78,6 +78,7 @@ dependencies = [
7878
"span",
7979
"stdx",
8080
"syntax",
81+
"tracing",
8182
"triomphe",
8283
"vfs",
8384
]
@@ -494,8 +495,10 @@ dependencies = [
494495
"profile",
495496
"rustc-hash",
496497
"smallvec",
498+
"span",
497499
"stdx",
498500
"syntax",
501+
"tracing",
499502
"triomphe",
500503
"tt",
501504
]
@@ -592,7 +595,7 @@ dependencies = [
592595
"profile",
593596
"project-model",
594597
"ra-ap-rustc_abi",
595-
"ra-ap-rustc_index",
598+
"ra-ap-rustc_index 0.35.0",
596599
"ra-ap-rustc_pattern_analysis",
597600
"rustc-hash",
598601
"scoped-tls",
@@ -670,6 +673,7 @@ dependencies = [
670673
"test-fixture",
671674
"test-utils",
672675
"text-edit",
676+
"tracing",
673677
]
674678

675679
[[package]]
@@ -690,6 +694,7 @@ dependencies = [
690694
"test-fixture",
691695
"test-utils",
692696
"text-edit",
697+
"tracing",
693698
]
694699

695700
[[package]]
@@ -747,6 +752,7 @@ dependencies = [
747752
"test-fixture",
748753
"test-utils",
749754
"text-edit",
755+
"tracing",
750756
]
751757

752758
[[package]]
@@ -1342,6 +1348,7 @@ dependencies = [
13421348
"once_cell",
13431349
"perf-event",
13441350
"tikv-jemalloc-ctl",
1351+
"tracing",
13451352
"winapi",
13461353
]
13471354

@@ -1419,12 +1426,12 @@ dependencies = [
14191426

14201427
[[package]]
14211428
name = "ra-ap-rustc_abi"
1422-
version = "0.33.0"
1429+
version = "0.35.0"
14231430
source = "registry+https://github.com/rust-lang/crates.io-index"
1424-
checksum = "8ce9100fc66c6c60aeeb076868ead9c2eaa65d6a5a90404f08c242327a92ff4b"
1431+
checksum = "3c0baa423a2c2bfd6e4bd40e7215f7ddebd12a649ce0b65078a38b91068895aa"
14251432
dependencies = [
14261433
"bitflags 2.4.1",
1427-
"ra-ap-rustc_index",
1434+
"ra-ap-rustc_index 0.35.0",
14281435
"tracing",
14291436
]
14301437

@@ -1435,7 +1442,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
14351442
checksum = "5e5313d7f243b63ef9e58d94355b11aa8499f1328055f1f58adf0a5ea7d2faca"
14361443
dependencies = [
14371444
"arrayvec",
1438-
"ra-ap-rustc_index_macros",
1445+
"ra-ap-rustc_index_macros 0.33.0",
1446+
"smallvec",
1447+
]
1448+
1449+
[[package]]
1450+
name = "ra-ap-rustc_index"
1451+
version = "0.35.0"
1452+
source = "registry+https://github.com/rust-lang/crates.io-index"
1453+
checksum = "322b751895cc4a0a2ee0c6ab36ec80bc8abf5f8d76254c482f96f03c27c92ebe"
1454+
dependencies = [
1455+
"arrayvec",
1456+
"ra-ap-rustc_index_macros 0.35.0",
14391457
"smallvec",
14401458
]
14411459

@@ -1451,23 +1469,35 @@ dependencies = [
14511469
"synstructure",
14521470
]
14531471

1472+
[[package]]
1473+
name = "ra-ap-rustc_index_macros"
1474+
version = "0.35.0"
1475+
source = "registry+https://github.com/rust-lang/crates.io-index"
1476+
checksum = "054e25eac52f0506c1309ca4317c11ad4925d7b99eb897f71aa7c3cbafb46c2b"
1477+
dependencies = [
1478+
"proc-macro2",
1479+
"quote",
1480+
"syn 2.0.39",
1481+
"synstructure",
1482+
]
1483+
14541484
[[package]]
14551485
name = "ra-ap-rustc_lexer"
1456-
version = "0.33.0"
1486+
version = "0.35.0"
14571487
source = "registry+https://github.com/rust-lang/crates.io-index"
1458-
checksum = "d2d221356e5717595e8a0afa5fba1620dcb4032ab784dc4d98fdc7284e3feb66"
1488+
checksum = "c8da0fa51a1a97ba4296a1c78fa454815a153b472e2546b6338a0902ad59e015"
14591489
dependencies = [
14601490
"unicode-properties",
14611491
"unicode-xid",
14621492
]
14631493

14641494
[[package]]
14651495
name = "ra-ap-rustc_parse_format"
1466-
version = "0.33.0"
1496+
version = "0.35.0"
14671497
source = "registry+https://github.com/rust-lang/crates.io-index"
1468-
checksum = "ab62fc925612374103b4f178da347b535b35d9eb1ff5ba42105c990b2e25a164"
1498+
checksum = "3851f930a54adcb76889983dcd5c00a0c4e206e190e1384dbc00d49b82dfb45e"
14691499
dependencies = [
1470-
"ra-ap-rustc_index",
1500+
"ra-ap-rustc_index 0.35.0",
14711501
"ra-ap-rustc_lexer",
14721502
]
14731503

@@ -1478,7 +1508,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
14781508
checksum = "6c4085e0c771fd4b883930b599ef42966b855762bbe4052c17673b3253421a6d"
14791509
dependencies = [
14801510
"derivative",
1481-
"ra-ap-rustc_index",
1511+
"ra-ap-rustc_index 0.33.0",
14821512
"rustc-hash",
14831513
"rustc_apfloat",
14841514
"smallvec",
@@ -1581,7 +1611,6 @@ dependencies = [
15811611
"tikv-jemallocator",
15821612
"toolchain",
15831613
"tracing",
1584-
"tracing-log",
15851614
"tracing-subscriber",
15861615
"tracing-tree",
15871616
"triomphe",
@@ -1595,26 +1624,26 @@ dependencies = [
15951624

15961625
[[package]]
15971626
name = "rust-analyzer-salsa"
1598-
version = "0.17.0-pre.5"
1627+
version = "0.17.0-pre.6"
15991628
source = "registry+https://github.com/rust-lang/crates.io-index"
1600-
checksum = "ca9d387a9801f4fb9b366789ad1bfc08448cafc49cf148d907cfcd88ab665d7f"
1629+
checksum = "719825638c59fd26a55412a24561c7c5bcf54364c88b9a7a04ba08a6eafaba8d"
16011630
dependencies = [
16021631
"indexmap",
16031632
"lock_api",
1604-
"log",
16051633
"oorandom",
16061634
"parking_lot",
16071635
"rust-analyzer-salsa-macros",
16081636
"rustc-hash",
16091637
"smallvec",
1638+
"tracing",
16101639
"triomphe",
16111640
]
16121641

16131642
[[package]]
16141643
name = "rust-analyzer-salsa-macros"
1615-
version = "0.17.0-pre.5"
1644+
version = "0.17.0-pre.6"
16161645
source = "registry+https://github.com/rust-lang/crates.io-index"
1617-
checksum = "a2035f385d7fae31e9b086f40b272ee1d79c484472f31c9a10348a406e841eaf"
1646+
checksum = "4d96498e9684848c6676c399032ebc37c52da95ecbefa83d71ccc53b9f8a4a8e"
16181647
dependencies = [
16191648
"heck",
16201649
"proc-macro2",
@@ -1661,9 +1690,9 @@ dependencies = [
16611690

16621691
[[package]]
16631692
name = "scip"
1664-
version = "0.3.1"
1693+
version = "0.3.3"
16651694
source = "registry+https://github.com/rust-lang/crates.io-index"
1666-
checksum = "3e84d21062a3ba08d58870c8c36b0c005b2b2261c6ad1bf7042585427c781883"
1695+
checksum = "e5dc1bd66649133af84ab62436ddd2856c2605182b02dec2cd197f684dfe15ef"
16671696
dependencies = [
16681697
"protobuf",
16691698
]
@@ -1863,6 +1892,7 @@ dependencies = [
18631892
"stdx",
18641893
"test-utils",
18651894
"text-edit",
1895+
"tracing",
18661896
"triomphe",
18671897
"ungrammar",
18681898
]
@@ -1890,6 +1920,7 @@ dependencies = [
18901920
"rustc-hash",
18911921
"stdx",
18921922
"text-size",
1923+
"tracing",
18931924
]
18941925

18951926
[[package]]

src/tools/rust-analyzer/Cargo.toml

+8-23
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ tt = { path = "./crates/tt", version = "0.0.0" }
7979
vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" }
8080
vfs = { path = "./crates/vfs", version = "0.0.0" }
8181

82-
ra-ap-rustc_lexer = { version = "0.33.0", default-features = false }
83-
ra-ap-rustc_parse_format = { version = "0.33.0", default-features = false }
84-
ra-ap-rustc_index = { version = "0.33.0", default-features = false }
85-
ra-ap-rustc_abi = { version = "0.33.0", default-features = false }
82+
ra-ap-rustc_lexer = { version = "0.35.0", default-features = false }
83+
ra-ap-rustc_parse_format = { version = "0.35.0", default-features = false }
84+
ra-ap-rustc_index = { version = "0.35.0", default-features = false }
85+
ra-ap-rustc_abi = { version = "0.35.0", default-features = false }
8686
ra-ap-rustc_pattern_analysis = { version = "0.33.0", default-features = false }
8787

8888
# local crates that aren't published to crates.io. These should not have versions.
@@ -113,7 +113,7 @@ itertools = "0.12.0"
113113
libc = "0.2.150"
114114
nohash-hasher = "0.2.0"
115115
rayon = "1.8.0"
116-
rust-analyzer-salsa = "0.17.0-pre.5"
116+
rust-analyzer-salsa = "0.17.0-pre.6"
117117
rustc-hash = "1.1.0"
118118
semver = "1.0.14"
119119
serde = { version = "1.0.192", features = ["derive"] }
@@ -128,9 +128,9 @@ text-size = "1.1.1"
128128
tracing = "0.1.40"
129129
tracing-tree = "0.3.0"
130130
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
131-
"registry",
132-
"fmt",
133-
"tracing-log",
131+
"registry",
132+
"fmt",
133+
"tracing-log",
134134
] }
135135
triomphe = { version = "0.1.10", default-features = false, features = ["std"] }
136136
xshell = "0.2.5"
@@ -167,29 +167,14 @@ new_ret_no_self = "allow"
167167

168168
## Following lints should be tackled at some point
169169
borrowed_box = "allow"
170-
borrow_deref_ref = "allow"
171-
derivable_impls = "allow"
172170
derived_hash_with_manual_eq = "allow"
173-
field_reassign_with_default = "allow"
174171
forget_non_drop = "allow"
175-
format_collect = "allow"
176-
large_enum_variant = "allow"
177172
needless_doctest_main = "allow"
178-
new_without_default = "allow"
179173
non_canonical_clone_impl = "allow"
180174
non_canonical_partial_ord_impl = "allow"
181175
self_named_constructors = "allow"
182-
skip_while_next = "allow"
183176
too_many_arguments = "allow"
184-
toplevel_ref_arg = "allow"
185177
type_complexity = "allow"
186-
unnecessary_cast = "allow"
187-
unnecessary_filter_map = "allow"
188-
unnecessary_lazy_evaluations = "allow"
189-
unnecessary_mut_passed = "allow"
190-
useless_conversion = "allow"
191-
useless_format = "allow"
192-
wildcard_in_or_patterns = "allow"
193178
wrong_self_convention = "allow"
194179

195180
## warn at following lints

0 commit comments

Comments
 (0)