David Barsky
David Barsky
After some discussion [on Zulip](https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Frust-analyzer/topic/Thinking.20about.20Lazy.20Project.20Discovery.20and.20OpQueues/near/447224346) and noodling around with different approaches today, I think the right approach to [resolve this issue in the short term](https://github.com/rust-lang/rust-analyzer/pull/17246#issuecomment-2185259122) would be to make the...
I couldn't answer https://github.com/rust-lang/rust-analyzer/pull/17246#discussion_r1660880157 inline, so: > Why does tracing play into this at all? Tracing sounds very wrong here. it's a _bit_ wrong, but I'm using `tracing` as a...
> Ugh I forgot about this sorry > > @bors delegate+ > > > > Merge after you rebase it once more (though do wait until monday's release just to...
@bors r=@Veykril
rust-analyzer might not be able to use `OffsetTime` without introducing some unsafe code, but I think `SystemTime` might be reasonable for user-facing logs. (I think if rust-analyzer ever used something...
Yeah, I think it's reasonable that some people are annoyed by this, which is why I think should be controlled at the language/build system level, not the IDE level[^1]. However,...
How would you feel about having this being a diagnostic by default, and behind a off-by-default setting, the ability to upgrade it to a notification? For the users Wilfred and...
> RustRover shows a banner-like thing at the top of the file I believe. VSCode doesn't really let us to do that unfortunately. To add to this, the reason I...
> I've also been exploring the code in flycheck.rs and main_loop.rs, and yeah I see why the issue is arising. The good news is, cargo check and RA do report...
Ah, thanks for your answer! The following: ```toml [target.'cfg(crossbeam_loom)'.dependencies] crossbeam-utils = { version = "0.8", features = ["loom"] } crossbeam-epoch = { version = "0.9", features = ["loom"] } ```...