diff --git a/justfile b/justfile new file mode 100644 index 0000000000..9bc65e4d5d --- /dev/null +++ b/justfile @@ -0,0 +1,8 @@ +# If no sub-command is given, simply list all the available options +_default: + just --list + +# Build the doc +doc *args='': + RUSTDOCFLAGS='--cfg docsrs' cargo +nightly doc --all-features --no-deps {{args}} +