Skip to content

Commit

Permalink
Don't doc deps in CI (#47)
Browse files Browse the repository at this point in the history
* Don't doc deps in CI

Previously the CI documentation build would include dependency
documentation. We're only actually interested in doc validity in our own
code, so no sense generating docs for deps.

This should fix the doc failures in CI

* fix those doc failures
  • Loading branch information
rnarubin authored Nov 8, 2023
1 parent ed99bd3 commit 74174bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/hedwig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: doc
args: --all-features --manifest-path=Cargo.toml
args: --all-features --manifest-path=Cargo.toml --no-deps
env:
RUSTDOCFLAGS: --cfg docsrs -Dmissing_docs -Drustdoc::broken_intra_doc_links

Expand Down
2 changes: 2 additions & 0 deletions src/message.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Message related types
use bytes::Bytes;
use std::{borrow::Cow, time::SystemTime};
use uuid::Uuid;
Expand Down
2 changes: 1 addition & 1 deletion src/validators/prost.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Validation and decoding for messages encoded with protobuf using [`prost`](::prost)
//! Validation and decoding for messages encoded with protobuf using [`prost`]
//!
//! ```
//! use hedwig::validators::prost::{ProstValidator, ProstDecoder, ExactSchemaMatcher};
Expand Down

0 comments on commit 74174bb

Please sign in to comment.