Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,9 @@ jobs:
RUST_LOG: DEBUG
RUST_BACKTRACE: full
- name: Doc Test
run: cargo test --doc --all-features --workspace
run: cargo +nightly test --doc --all-features --workspace
env:
RUSTDOCFLAGS: --cfg docsrs
RUST_LOG: DEBUG
RUST_BACKTRACE: full

Expand Down
1 change: 1 addition & 0 deletions reqsign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ rust-version.workspace = true

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
# Core functionality (always included)
Expand Down
2 changes: 1 addition & 1 deletion reqsign/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![cfg_attr(docsrs, feature(doc_cfg))]

// Re-export core types
pub use reqsign_core::*;
Expand Down
Loading