This is an automated email from the ASF dual-hosted git repository.
martin-g pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 2acbc56 fix: Build docs with `--all-features` in CI (#671)
2acbc56 is described below
commit 2acbc561e5471eff7a14902ce852ea01f907db07
Author: Kriskras99 <[email protected]>
AuthorDate: Fri Sep 11 04:50:06 2026 +0200
fix: Build docs with `--all-features` in CI (#671)
---
.github/workflows/test-lang-rust-ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/test-lang-rust-ci.yml
b/.github/workflows/test-lang-rust-ci.yml
index 9987c65..780e101 100644
--- a/.github/workflows/test-lang-rust-ci.yml
+++ b/.github/workflows/test-lang-rust-ci.yml
@@ -113,7 +113,7 @@ jobs:
if: matrix.rust == 'nightly' && matrix.runner.target ==
'x86_64-unknown-linux-gnu'
env:
RUSTDOCFLAGS: --cfg docsrs -Dwarnings
- run: cargo doc --lib --no-deps --document-private-items --features
derive
+ run: cargo doc --lib --no-deps --document-private-items --all-features
- name: Rust Format
if: matrix.runner.target != 'wasm32-unknown-unknown'