diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4bb63b0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug main.rs", + "type": "lldb", + "request": "launch", + "program": "${workspaceFolder}/target/debug/table-server", + "args": [], + "cwd": "${workspaceFolder}", + "sourceLanguages": ["rust"], + "preLaunchTask": "cargo build" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..51d9096 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,15 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "cargo build", + "type": "shell", + "command": "cargo build", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": ["$rustc"] + } + ] +}