Avoid broken docs in dependency

This commit is contained in:
2025-11-24 23:01:27 +01:00
parent 003f6a02d7
commit ed6676d345

View File

@@ -34,7 +34,6 @@ jobs:
if: "${{ matrix.rust != '1.74' }}" if: "${{ matrix.rust != '1.74' }}"
- run: cargo build --all-features --all-targets - run: cargo build --all-features --all-targets
- run: cargo test --all-features - run: cargo test --all-features
- run: cargo fmt --all -- --check
# Note: Rust 1.74 doesn't understand edition 2024 formatting so no point # Note: Rust 1.74 doesn't understand edition 2024 formatting so no point
if: "${{ matrix.rust != '1.74' }}" if: "${{ matrix.rust != '1.74' }}"
- run: cargo clippy --all-features --all-targets -- -D warnings - run: cargo clippy --all-features --all-targets -- -D warnings
@@ -67,4 +66,4 @@ jobs:
env: env:
# Build the docs like docs.rs builds it # Build the docs like docs.rs builds it
RUSTDOCFLAGS: --cfg docsrs RUSTDOCFLAGS: --cfg docsrs
run: cargo doc --all-features run: cargo doc --all-features --no-deps