distributed_physics_test/.vscode/tasks.json
2025-05-19 00:27:12 -04:00

29 lines
565 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Launch",
"type": "cargo",
"command": "run",
"args": ["--", "--seed", "gargamel"],
"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
}
}
]
}