Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(rust): rust analyzer fails because of unstable flag '--keep-going'
Current rust template uses stable-23.11 channel which has cargo 1.73.0, when the VSCode Rust Analyzer runs, it will check against `--keep-going` flag with the following error message error: the `--keep-going` flag is unstable, pass `-Z unstable-options` to enable it See rust-lang/cargo#10496 for more information about the `--keep-going` flag. To fix this error, we should add the `-Z unstable-options` flag in the cargo check command which Rust Analyzer runs on.
- Loading branch information