# rust-analyzer config # Skip the `easytier-gui` (Tauri) crate because its build scripts require # system libraries webkit2gtk-4.1 / javascriptcoregtk-4.1 that are not # installed on this host. Excluding it keeps rust-analyzer healthy for the # rest of the workspace. # Override the command used to run build scripts / collect build data. [cargo.buildScripts] overrideCommand = [ "cargo", "check", "--quiet", "--workspace", "--exclude", "easytier-gui", "--message-format=json", "--all-targets", "--keep-going", ] # Override the command used for diagnostics-on-save. [check] overrideCommand = [ "cargo", "check", "--workspace", "--exclude", "easytier-gui", "--message-format=json", "--all-targets", "--keep-going", ]