mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 17:41:11 +00:00
11 lines
447 B
Makefile
11 lines
447 B
Makefile
_list:
|
|
@just --list
|
|
|
|
# Document crates in workspace.
|
|
doc:
|
|
RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --features=rustls,openssl
|
|
|
|
# Document crates in workspace and watch for changes.
|
|
doc-watch:
|
|
RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --features=rustls,openssl --open
|
|
cargo watch -- RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --features=rustls,openssl
|