initial commit

This commit is contained in:
Jorge Aparicio
2020-08-21 12:02:11 +02:00
commit df96204a61
13 changed files with 479 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{
// override the default setting (`cargo check --all-targets`) which produces the following error
// "can't find crate for `test`" when the default compilation target is a no_std target
// with these changes RA will call `cargo check --bins` on save
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.checkOnSave.extraArgs": [
"--bins"
]
}