mirror of
https://github.com/sagiegurari/cargo-make
synced 2026-06-08 17:20:03 +00:00
27 lines
840 B
JSON
27 lines
840 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"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"
|
|
},
|
|
]
|
|
} |