Skip to content

Rollup of 11 pull requests #130902

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4788e8c
Add the library workspace to the suggested rust-analyzer config
bjorn3 Sep 18, 2024
86493d4
Extend rustdoc template check to detect unneeded comments
GuillaumeGomez Sep 22, 2024
912e1ae
Remove unneeded jinja comments in templates
GuillaumeGomez Sep 22, 2024
986e20d
Fixed diagnostics for coroutines with () as input.
91khr Sep 25, 2024
8f1ed9b
Utf8Chunks: add link to Utf8Chunk
RalfJung Sep 25, 2024
d3e59a5
Revert Break into the debugger on panic (129019)
ChrisDenton Sep 25, 2024
afb7eef
Pass Module Analysis Manager to Standard Instrumentations
Sep 25, 2024
a51b0a2
Use `mem::offset_of!` for `sockaddr_un.sun_path`
cuviper Sep 25, 2024
5892187
Fix the misleading diagnostic for let_underscore_drop on type without…
makai410 Sep 26, 2024
1bef68c
Update FIXME comment in s390x_unknown_linux_*.rs
taiki-e Sep 26, 2024
ef87a7f
add missing FIXME(const-hack)
RalfJung Sep 26, 2024
9431d1a
Add `sun_path` to the fake doc `sockaddr_un`
cuviper Sep 26, 2024
e29ff8c
Pass correct HirId to late_bound_vars in diagnostic code
fmease Sep 26, 2024
16726f0
Rollup merge of #130517 - bjorn3:update_ra_config, r=onur-ozkan
workingjubilee Sep 26, 2024
de98278
Rollup merge of #130706 - GuillaumeGomez:remove-unneeded-jinja-commen…
workingjubilee Sep 26, 2024
e3fe4a2
Rollup merge of #130820 - 91khr:fix-coroutine-unit-arg, r=compiler-er…
workingjubilee Sep 26, 2024
3005040
Rollup merge of #130833 - makai410:master, r=compiler-errors,fee1-dead
workingjubilee Sep 26, 2024
0f628b2
Rollup merge of #130845 - RalfJung:utf8chunk, r=tgross35
workingjubilee Sep 26, 2024
6798174
Rollup merge of #130846 - ChrisDenton:revert-break, r=Noratrieb
workingjubilee Sep 26, 2024
7939ed5
Rollup merge of #130850 - saveasguy:pass-mam-to-standrd-instrumentati…
workingjubilee Sep 26, 2024
37ed94f
Rollup merge of #130861 - cuviper:sun-path-offset, r=ibraheemdev
workingjubilee Sep 26, 2024
0b91f88
Rollup merge of #130868 - taiki-e:s390x-fixme, r=jieyouxu
workingjubilee Sep 26, 2024
6490a7d
Rollup merge of #130879 - fmease:fix-diag-ice, r=compiler-errors
workingjubilee Sep 26, 2024
0aba6a5
Rollup merge of #130880 - RalfJung:const-hack, r=scottmcm
workingjubilee Sep 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add the library workspace to the suggested rust-analyzer config
  • Loading branch information
bjorn3 committed Sep 18, 2024
commit 4788e8c34ac900f3595e7fe6070f0cf210851cf7
1 change: 1 addition & 0 deletions src/bootstrap/src/core/build_steps/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ static SETTINGS_HASHES: &[&str] = &[
"47d227f424bf889b0d899b9cc992d5695e1b78c406e183cd78eafefbe5488923",
"b526bd58d0262dd4dda2bff5bc5515b705fb668a46235ace3e057f807963a11a",
"828666b021d837a33e78d870b56d34c88a5e2c85de58b693607ec574f0c27000",
"811fb3b063c739d261fd8590dd30242e117908f5a095d594fa04585daa18ec4d",
];
static RUST_ANALYZER_SETTINGS: &str = include_str!("../../../../etc/rust_analyzer_settings.json");

Expand Down
1 change: 1 addition & 0 deletions src/etc/rust_analyzer_settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
],
"rust-analyzer.linkedProjects": [
"Cargo.toml",
"library/Cargo.toml",
"src/tools/x/Cargo.toml",
"src/bootstrap/Cargo.toml",
"src/tools/rust-analyzer/Cargo.toml",
Expand Down
Loading