distributed_physics_test/.vscode/tasks.json
2025-03-05 19:33:11 -05:00

28 lines
524 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Launch",
"type": "cargo",
"command": "run",
"options": {
"env": {
"RUST_BACKTRACE": "full"
}
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}