33 lines
484 B
JSON
33 lines
484 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "run poc",
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"args": [
|
|
"--bin",
|
|
"poc"
|
|
],
|
|
"group": "build",
|
|
"env": {
|
|
"RUST_BACKTRACE": "1"
|
|
},
|
|
"dependsOn": [
|
|
"build contracts"
|
|
]
|
|
},
|
|
{
|
|
"label": "build contracts",
|
|
"type": "cargo",
|
|
"command": "build-bpf",
|
|
"args": [
|
|
"--workspace"
|
|
],
|
|
"env": {
|
|
"RUST_BACKTRACE": "1"
|
|
},
|
|
"group": "build",
|
|
}
|
|
]
|
|
} |