Skip to content

Tags: rust-lang/rust-analyzer

Tags

nightly

Toggle nightly's commit message
Auto merge of #18227 - davidbarsky:davidbarsky/push-lmntvwvznyyx, r=d…

…avidbarsky

internal: add json `tracing` Layer for profiling startup

On `buck2/integrations/rust-project`, this results in the following being printed:

```json
{"name":"discover_command","elapsed_ms":18703}
{"name":"parallel_prime_caches","elapsed_ms":0}
{"name":"vfs_load","elapsed_ms":5895}
{"name":"vfs_load","elapsed_ms":547}
{"name":"parallel_prime_caches","elapsed_ms":23}
{"name":"parallel_prime_caches","elapsed_ms":84}
{"name":"parallel_prime_caches","elapsed_ms":5819}
```

2024-09-30

Toggle 2024-09-30's commit message
Auto merge of #18205 - noahmbright:object_safety, r=HKalbasi

Rename object_safety

First PR here (yay!), so I read some of the getting started docs. There are a couple references to `handlers.rs`, which as far as I can tell has been refactored into `handlers/*.rs`. I made some tweaks to that in one commit. There is one fixme about a function called `to_lsp_runnable`, which I can't find anywhere at all. I can update that if I get some more info there.

Otherwise I changed references to object safety, is object safe, etc., trying to match case/style as I went. There was one case I found where there's a trait from somewhere else called `is_object_safe`, which I found defined in my cargo registry. I didn't touch that for now, just marked it with a fixme

2024-09-23

Toggle 2024-09-23's commit message
Auto merge of #18169 - lnicola:disable-gh-releases, r=lnicola

internal: Disable GitHub releases for now

These are currently throwing `Error: HttpError: Resource not accessible by integration` because of the organization change, let's disable them for today's release.

2024-09-16

Toggle 2024-09-16's commit message
Auto merge of #18119 - ChayimFriedman2:signed-const, r=HKalbasi

fix: Fix printing of constants greater than `i128::MAX`

Fixes #18116.

2024-09-09

Toggle 2024-09-09's commit message
Auto merge of #18067 - Veykril:prevent-mir-building, r=Veykril

fix: Properly prevent mir building with unknown types present

2024-09-02

Toggle 2024-09-02's commit message
Auto merge of #17967 - Veykril:mbe-tests, r=Veykril

internal: Lay basic ground work for standalone mbe tests

Most of our mbe hir-def tests don't actually do anything name res relevant, we can (and should) move those down the stack into `mbe/hir-expand`.

2024-08-27

Toggle 2024-08-27's commit message
Auto merge of #17972 - rust-lang:revert-17936-module_path, r=Veykril

Revert "feat: Implement `module_path` macro"

Reverts #17936 Fixes #17968

2024-08-26

Toggle 2024-08-26's commit message
Auto merge of #17960 - duncanawoods:master, r=HKalbasi

fix: add extra_test_bin_args to test explorer test runner

`@HKalbasi` I thought I included this in #17470 but it appears not so I have created a new issue #17959 for this fix.

2024-08-19

Toggle 2024-08-19's commit message
Auto merge of #17915 - Veykril:offline-no-deps, r=Veykril

feat: Make rust-analyzer work partially when offline

Helps out with #12499 a bit

2024-08-12

Toggle 2024-08-12's commit message
Auto merge of #17844 - Veykril:find-path-std-fix, r=Veykril

fix: Fix find_path not respecting non-std preference config correctly

Fixes #17840