dots-of-war/private_dot_config/zed/tasks.json
2024-11-16 17:56:15 +01:00

19 lines
417 B
JSON

// Static tasks configuration.
[
{
"label": "Cargo test",
"command": "cargo nextest run",
"env": {},
//"cwd": "/path/to/working/directory",
"use_new_terminal": false,
"allow_concurrent_runs": false
},
{
"label": "Cargo run",
"command": "cargo run",
"env": {},
//"cwd": "/path/to/working/directory",
"use_new_terminal": false,
"allow_concurrent_runs": false
}
]