diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..7af499a --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Launch", + "type": "cargo", + "command": "run", + "options": { + "env": { + "RUST_BACKTRACE": "full" + } + }, + "presentation": { + "echo": true, + "reveal": "always", + "focus": false, + "panel": "dedicated", + "showReuseMessage": false, + "clear": false + }, + "problemMatcher": ["$rustc"], + "group": { + "kind": "build", + "isDefault": true + } + } + ] +}