mirror of
https://github.com/esp-rs/espup.git
synced 2025-09-27 04:40:27 +00:00
27 lines
634 B
JSON
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}"
|
|
}
|
|
]
|
|
}
|