diff --git a/justfile b/justfile index f07324d..df084a5 100644 --- a/justfile +++ b/justfile @@ -17,5 +17,15 @@ build: cargo build --all-features docs: + export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options" + cargo +nightly doc --all-features + +docs-html: export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options" cargo +nightly doc --all-features --open + +coverage: + cargo llvm-cov nextest + +coverage-html: + cargo llvm-cov nextest --html --open