-
I ran `bazel run @rules_rust//tools/rust_analyzer:gen_rust_project` and it generates a rust-project.json that provides LSP funcitonality for all first-party code. However, I have some vendored third-p…
-
snippet:
````rust
fn a(
_: impl Iterator<
Item = [(); {
match *todo!() { ! };
}],
>,
) {
}
````
Version information
````
rustc 1.85.0-nightly (481…
-
If a command encounters a non-fatal error, it should send the error as a response. Note, an invalid command should not be treated as an error.
-
Version of VSCode: 1.13.1 (1.13.1)
Version of the extension: Latest: 0.4.2
OS: macOS Sierra 10.12.5 (16F73)
Description: RLS: Crashed
Output of the "Rust logging" channel:
```
DEBUG:rls::ser…
ashee updated
7 years ago
-
lib.rs has new support that runs some custom lints to validate crate definitions and metadata, we should go through all of the warnings on our Embark crates and try and fix the warnings and recommenda…
-
This issue is just to document my process. It's ridiculously slow, but a lot of fun.
1. Build yourself a rustc with `-Zalways-encode-mir` (stage2 build necessary)
2. Add it to rustup (e.g. under t…
-
**Forge**: 1.16.4-35.1.13
**Krate**: 1.16.4-0.1.2
**Description**: When upgrading a Krate with the hopper upgrade, it fails to pull from all the slots in the storage.
Attached is an example usin…
-
Running `cargo install --locked --git https://github.com/geiger-rs/cargo-geiger cargo-geiger` yielded the following:
```
Updating git repository `https://github.com/geiger-rs/cargo-geiger`
w…
-
I'll give a minimal example here.
In my toml I have sqlx
```toml
sqlx = { version = "0.7", default-features = false, features = [
"macros",
"runtime-tokio-native-tls",
"migrate",
…
-
Highlightrs currently uses `rustdoc::html::highlight::highlight` to do the highlighting but thats just a thin wrapper around the scanner. It can't recognize bad syntax or language constructs. Lets try…