mirror of
https://gitlab.com/veilid/veilid.git
synced 2026-01-23 09:55:47 -05:00
14 lines
260 B
Batchfile
14 lines
260 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLCHAIN=%1
|
|
if "%TOOLCHAIN%"=="" (
|
|
set TOOLCHAIN=nightly
|
|
)
|
|
|
|
cargo install cargo-docs-rs
|
|
cargo +%TOOLCHAIN% docs-rs -p veilid-core
|
|
cargo +%TOOLCHAIN% docs-rs -p veilid-tools
|
|
cargo +%TOOLCHAIN% docs-rs -p veilid-remote-api
|
|
|
|
endlocal
|