2025-02-12 05:32:06 +01:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"type": "cargo",
|
|
|
|
"command": "build",
|
|
|
|
"args": [
|
|
|
|
"-p",
|
|
|
|
"lp-core",
|
|
|
|
"--release"
|
|
|
|
],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build"
|
|
|
|
},
|
2025-02-12 08:52:34 +01:00
|
|
|
"label": "build lp-core"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "cargo",
|
|
|
|
"command": "build",
|
|
|
|
"args": [
|
|
|
|
"-p",
|
|
|
|
"hp-core",
|
|
|
|
"--release"
|
|
|
|
],
|
|
|
|
"dependsOn": [
|
|
|
|
"build lp-core"
|
|
|
|
],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build"
|
|
|
|
},
|
|
|
|
"label": "build hp-core"
|
2025-02-12 05:32:06 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "cargo",
|
|
|
|
"command": "check",
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": "build",
|
2025-02-12 08:52:34 +01:00
|
|
|
"label": "check"
|
2025-02-12 05:32:06 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "cargo",
|
|
|
|
"command": "clean",
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": "build",
|
2025-02-12 08:52:34 +01:00
|
|
|
"label": "clean"
|
2025-02-12 05:32:06 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "cargo",
|
|
|
|
"command": "run",
|
2025-02-12 08:52:34 +01:00
|
|
|
"args": [
|
|
|
|
"-p",
|
|
|
|
"hp-core",
|
|
|
|
"--release"
|
|
|
|
],
|
|
|
|
"dependsOn": [
|
|
|
|
"build hp-core"
|
|
|
|
],
|
2025-02-12 05:32:06 +01:00
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": "build",
|
2025-02-12 08:52:34 +01:00
|
|
|
"label": "run"
|
2025-02-12 05:32:06 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|