fix: include Cargo.toml in .vscode/settings.json

This was needed for me to get autocomplete with rust-analyzer for libcosmic
This commit is contained in:
Ryan Brue 2024-03-05 00:36:48 -06:00 committed by Jeremy Soller
parent f794c53277
commit d853b8cda1

View file

@ -1,4 +1,7 @@
{
"rust-analyzer.check.overrideCommand": ["just", "check-json"],
"git-blame.gitWebUrl": ""
"git-blame.gitWebUrl": "",
"rust-analyzer.linkedProjects": [
"./Cargo.toml"
]
}