16 lines
396 B
JSON
16 lines
396 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|