nix-dotfiles/pkgs/edit/.vscode/tasks.json

25 lines
527 B
JSON
Raw Normal View History

2025-05-23 12:19:11 -04:00
{
"version": "2.0.0",
"tasks": [
{
"label": "rust: cargo build",
"type": "process",
"command": "cargo",
"args": [
"build",
"--package",
"edit",
"--features",
"debug-latency"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$rustc"
]
}
]
}