diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..de7e99f --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "cargo", + "command": "build", + "problemMatcher": [ + "$rustc" + ], + "group": "build", + "label": "rust: cargo build" + }, + { + "type": "cargo", + "command": "check", + "problemMatcher": [ + "$rustc" + ], + "group": "build", + "label": "rust: cargo check" + }, + { + "type": "cargo", + "command": "clippy", + "problemMatcher": [ + "$rustc" + ], + "group": "build", + "label": "rust: cargo clippy" + }, + { + "type": "cargo", + "command": "test", + "problemMatcher": [ + "$rustc" + ], + "group": "test", + "label": "rust: cargo test" + } + ] +} \ No newline at end of file