48 lines
709 B
JSON
48 lines
709 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "cargo",
|
|
"command": "build",
|
|
"args": [
|
|
"-p",
|
|
"lp-core",
|
|
"--release"
|
|
],
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": {
|
|
"kind": "build"
|
|
},
|
|
"label": "rust: cargo build lp-core"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "check",
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": "build",
|
|
"label": "rust: cargo check"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "clean",
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": "build",
|
|
"label": "rust: cargo clean"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": "build",
|
|
"label": "rust: cargo run"
|
|
}
|
|
]
|
|
} |