This repository was archived by the owner on Nov 18, 2022. It is now read-only.
This repository was archived by the owner on Nov 18, 2022. It is now read-only.
Including a build.rs breaks plugin functionality #200
Open
Description
When my project includes a build.rs
referenced in the Cargo.toml
the error output and Problems panel of this plugin no longer works.
Information
VSCode version: Version 1.18.1
Plugin version: 0.3.2
OS: Arch Linux
Steps to reproduce
- Create a new project with
cargo new --bin my_test
- Open VSCode in that directory
- Add some code that will cause a problem (this works):
fn main() {
let a = 5;
a = 12;
}
- Now add a
build = "build.rs"
to theCargo.toml
file which contains some code (my example) - Now the
Problems
panel no longer updates. New problems will also not be highlighted
Not sure if I'm doing something wrong here but I think this is a bug 😒