chuanyue-service/.vscode/launch.json
2025-03-09 16:36:07 +08:00

14 lines
364 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "rust",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/${workspaceFolderBasename}",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask":"rust: cargo build"
}
]
}