espup/.vscode/launch.json
2022-09-26 17:44:01 +00:00

27 lines
634 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable",
"cargo": {
"args": [
"build",
"--bin=espup",
"--package=espup",
"--manifest-path=Cargo.toml"
],
"filter": {
"name": "espup",
"kind": "bin"
}
},
"args": [
"install"
],
"cwd": "${workspaceFolder}"
}
]
}