You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please provide a config similar to rust-analyzer.check.workspace but for build scripts.
I need to be able to run only the build script of the current package and not the build scripts of the workspace deps.
In my specific case, I have a workspace member A which is supposed to be compiled for "wasm32-unknown-unknown", whereas the rest of the workspace should be compiled to the native arch.
I'm already using "rust-analyzer.check.workspace": false but I still get errors from workspace build scripts.
The text was updated successfully, but these errors were encountered:
The config there serves a different purpose, mainly that of checking speed. Omitting the --workspace flag in buildscript wouldn't make sense, as then we will simply not run build-scripts and not build proc-macros for the project making r-a pretty much useless.
Please provide a config similar to
rust-analyzer.check.workspace
but for build scripts.I need to be able to run only the build script of the current package and not the build scripts of the workspace deps.
In my specific case, I have a workspace member A which is supposed to be compiled for "wasm32-unknown-unknown", whereas the rest of the workspace should be compiled to the native arch.
I'm already using
"rust-analyzer.check.workspace": false
but I still get errors from workspace build scripts.The text was updated successfully, but these errors were encountered: