{
"version": "0.2.0",
"configurations": [
{
"name": "(LLDB) Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/makers",
"windows": {
"program": "${workspaceRoot}/target/debug/makers.exe"
},
"args": [
"--list-all-steps"
],
"cwd": "${workspaceRoot}",
"environment": [],
"stopOnEntry": false,
"sourceLanguages": [
"rust"
],
"preLaunchTask": "build debug"
},
]
}