{ "version": "2.0.0", "tasks": [ { "type": "cargo", "command": "build", "args": [ "-p", "lp-core", "--release" ], "problemMatcher": [ "$rustc" ], "group": { "kind": "build" }, "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" }, { "type": "cargo", "command": "check", "problemMatcher": [ "$rustc" ], "group": "build", "label": "check" }, { "type": "cargo", "command": "clean", "problemMatcher": [ "$rustc" ], "group": "build", "label": "clean" }, { "type": "cargo", "command": "run", "args": [ "-p", "hp-core", "--release" ], "dependsOn": [ "build hp-core" ], "problemMatcher": [ "$rustc" ], "group": "build", "label": "run" } ] }