29 lines
565 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
}
|