1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/justfile

38 lines
1.5 KiB
Makefile
Raw Permalink Normal View History

2023-08-03 06:03:42 +00:00
_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
2023-10-29 01:25:53 +00:00
# Check for unintentional external type exposure on all crates in workspace.
2023-10-30 00:36:06 +00:00
check-external-types-all toolchain="+nightly":
2023-10-29 01:25:53 +00:00
#!/usr/bin/env bash
set -euo pipefail
exit=0
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
2023-10-30 00:36:06 +00:00
if ! just check-external-types-manifest "$f" {{toolchain}}; then exit=1; fi
echo
echo
2023-10-29 01:25:53 +00:00
done
exit $exit
# Check for unintentional external type exposure on all crates in workspace.
2023-10-30 00:36:06 +00:00
check-external-types-all-table toolchain="+nightly":
#!/usr/bin/env bash
set -euo pipefail
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
echo
echo "Checking for $f"
2023-10-30 00:36:06 +00:00
just check-external-types-manifest "$f" {{toolchain}} --output-format=markdown-table
done
# Check for unintentional external type exposure on a crate.
2023-10-30 00:36:06 +00:00
check-external-types-manifest manifest_path toolchain="+nightly" *extra_args="":
cargo {{toolchain}} check-external-types --manifest-path "{{manifest_path}}" {{extra_args}}