azure-sdk-for-rust/.vscode/tasks.json

23 строки
517 B
JSON

{
"tasks": [
{
"label": "Start docs site (requires nightly)",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "cargo",
"args": [
"watch",
"-s",
"RUSTDOCFLAGS=\"--cfg=docsrs --enable-index-page -Z unstable-options\" cargo +nightly doc --all-features --workspace --no-deps",
"-s",
"http-server --index --port 8080 ./target/doc"
],
"isBackground": true,
"problemMatcher": [
"$rustc"
]
}
]
}