Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 032319f

Browse files
committed
Tell the user that Cargo.toml should be found at the root
This is a follow-up to the comments in #157 (#157 (comment))
1 parent f081ac2 commit 032319f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export function deactivate(): Promise<void> {
181181
function warnOnMissingCargoToml() {
182182
workspace.findFiles('Cargo.toml').then(files => {
183183
if (files.length < 1) {
184-
window.showWarningMessage('Cargo.toml must be in the workspace in order to support all features');
184+
window.showWarningMessage('A Cargo.toml file must be at the root of the workspace in order to support all features');
185185
}
186186
});
187187
}

0 commit comments

Comments
 (0)