little-hesinde/.vscode/tasks.json

18 lines
289 B
JSON
Raw Normal View History

2025-04-29 07:53:49 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"type": "shell",
"command": "cargo",
"args": ["run", "--", "-l", "[::]:3000", "--", "~/Documents/Library/"],
"options": {
"env": {
"RUST_LOG": "debug"
}
}
}
]
}