2023-10-29 02:35:12 +01:00
|
|
|
_list:
|
|
|
|
@just --list
|
2023-10-29 19:37:29 +01:00
|
|
|
|
|
|
|
# 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:
|
2023-12-06 02:39:13 +01:00
|
|
|
RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --features=rustls-0_20,rustls-0_21,rustls-0_20-native-roots,rustls-0_21-native-roots,openssl --open
|
|
|
|
cargo watch -- RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --features=rustls-0_20,rustls-0_21,rustls-0_20-native-roots,rustls-0_21-native-roots,openssl
|
2023-10-30 01:07:28 +01:00
|
|
|
|
|
|
|
# Check for unintentional external type exposure on all crates in workspace.
|
2023-11-06 23:12:58 +01:00
|
|
|
check-external-types-all toolchain="+nightly":
|
2023-10-30 01:07:28 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
2023-10-30 01:26:39 +01:00
|
|
|
exit=0
|
|
|
|
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
|
2023-11-06 23:12:58 +01:00
|
|
|
if ! just check-external-types-manifest "$f" {{toolchain}}; then exit=1; fi
|
2023-10-30 01:07:28 +01:00
|
|
|
echo
|
|
|
|
echo
|
|
|
|
done
|
2023-10-30 01:26:39 +01:00
|
|
|
exit $exit
|
2023-10-30 01:07:28 +01:00
|
|
|
|
|
|
|
# Check for unintentional external type exposure on all crates in workspace.
|
2023-11-06 23:12:58 +01:00
|
|
|
check-external-types-all-table toolchain="+nightly":
|
2023-10-30 01:07:28 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
2023-10-30 01:26:39 +01:00
|
|
|
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
|
2023-10-30 01:07:28 +01:00
|
|
|
echo
|
|
|
|
echo "Checking for $f"
|
2023-11-06 23:12:58 +01:00
|
|
|
just check-external-types-manifest "$f" {{toolchain}} --output-format=markdown-table
|
2023-10-30 01:07:28 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
# Check for unintentional external type exposure on a crate.
|
2023-11-06 23:12:58 +01:00
|
|
|
check-external-types-manifest manifest_path toolchain="+nightly" *extra_args="":
|
|
|
|
cargo {{toolchain}} check-external-types --manifest-path "{{manifest_path}}" {{extra_args}}
|