vscode-rust
vscode-rust copied to clipboard
Intellisense in multiple cargo projects
I have a project like this:
liborwell/
glium_orwell/
where liborwell is a cargo project by itself, and also is glium_orwell
Somehow, only liborwell works in VSCode. That is, only it has intellisense. glium_orwell won't have any.
Is there something I can do so both projects work with intellisense?
You can try making a Cargo workspace including the two. Also, rust-analyzer might have better (though not perfect) Code workspace support.
(Or you could try both of these things.)