All checks were successful
continuous-integration/drone/push Build is passing
41 lines
No EOL
597 B
JSON
41 lines
No EOL
597 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "cargo",
|
|
"command": "test",
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
},
|
|
"label": "rust: cargo test"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "build",
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"label": "rust: cargo build"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "fmt",
|
|
"problemMatcher": [
|
|
"$rustc"
|
|
],
|
|
"group": {
|
|
"kind": "none",
|
|
"isDefault": true
|
|
},
|
|
"label": "rust: cargo fmt"
|
|
}
|
|
]
|
|
} |