diff --git a/.github/workflows/hedwig.yml b/.github/workflows/hedwig.yml index 16f59b7..9abaa76 100644 --- a/.github/workflows/hedwig.yml +++ b/.github/workflows/hedwig.yml @@ -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 diff --git a/src/message.rs b/src/message.rs index 332a874..2b8899a 100644 --- a/src/message.rs +++ b/src/message.rs @@ -1,3 +1,5 @@ +//! Message related types + use bytes::Bytes; use std::{borrow::Cow, time::SystemTime}; use uuid::Uuid; diff --git a/src/validators/prost.rs b/src/validators/prost.rs index 945f64b..3ae0e5b 100644 --- a/src/validators/prost.rs +++ b/src/validators/prost.rs @@ -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};