1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-17 14:43:31 +01:00

fix check external types

This commit is contained in:
Rob Ede 2023-11-06 22:12:58 +00:00
parent f632ef2ba8
commit df12c10a3f
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 7 additions and 7 deletions

View File

@ -63,4 +63,4 @@ jobs:
tool: cargo-check-external-types@0.1.10 tool: cargo-check-external-types@0.1.10
- name: check external types - name: check external types
run: just check-external-types-all run: just check-external-types-all +nightly-2023-10-10

View File

@ -11,27 +11,27 @@ doc-watch:
cargo watch -- RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --features=rustls,openssl cargo watch -- RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --features=rustls,openssl
# Check for unintentional external type exposure on all crates in workspace. # Check for unintentional external type exposure on all crates in workspace.
check-external-types-all: check-external-types-all toolchain="+nightly":
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
exit=0 exit=0
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
if ! just check-external-types-manifest "$f"; then exit=1; fi if ! just check-external-types-manifest "$f" {{toolchain}}; then exit=1; fi
echo echo
echo echo
done done
exit $exit exit $exit
# Check for unintentional external type exposure on all crates in workspace. # Check for unintentional external type exposure on all crates in workspace.
check-external-types-all-table: check-external-types-all-table toolchain="+nightly":
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
echo echo
echo "Checking for $f" echo "Checking for $f"
just check-external-types-manifest "$f" --output-format=markdown-table just check-external-types-manifest "$f" {{toolchain}} --output-format=markdown-table
done done
# Check for unintentional external type exposure on a crate. # Check for unintentional external type exposure on a crate.
check-external-types-manifest manifest_path *extra_args: check-external-types-manifest manifest_path toolchain="+nightly" *extra_args="":
cargo +nightly check-external-types --manifest-path "{{manifest_path}}" {{extra_args}} cargo {{toolchain}} check-external-types --manifest-path "{{manifest_path}}" {{extra_args}}