44 lines
670 B
JSON
44 lines
670 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "cargo",
|
|
"command": "build",
|
|
"problemMatcher": [
|
|
"$rustc",
|
|
"$rust-panic"
|
|
],
|
|
"group": "build",
|
|
"label": "rust: cargo build"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "doc",
|
|
"problemMatcher": [
|
|
"$rustc",
|
|
"$rust-panic"
|
|
],
|
|
"group": "build",
|
|
"label": "rust: cargo doc"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "test",
|
|
"problemMatcher": [
|
|
"$rustc",
|
|
"$rust-panic"
|
|
],
|
|
"group": "test",
|
|
"label": "rust: cargo test"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"problemMatcher": [
|
|
"$rustc",
|
|
"$rust-panic"
|
|
],
|
|
"label": "rust: cargo run"
|
|
}
|
|
]
|
|
} |