Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rustdoc cleanup: use rustdoc attribute #508

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/msrv_toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
# Oldest nightly that currently works with `cargo xtask build`.
channel = "nightly-2022-04-18"
channel = "nightly-2022-09-14"
components = ["rust-src"]
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
cargo xtask clippy --warnings-as-errors

- name: Run cargo doc
run: cargo xtask doc --warnings-as-errors
run: cargo xtask doc

miri:
name: Run unit tests and doctests under Miri
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

- Fixed the definition of `AllocateType` so that `MaxAddress` and
`Address` always take a 64-bit value, regardless of target platform.
- The MSRV is `nightly-2022-09-14` (`1.65.0`)

## uefi-macros - [Unreleased]

Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
// Enable some additional warnings and lints.
#![warn(clippy::ptr_as_ptr, missing_docs, unused)]
#![deny(clippy::all)]
#![deny(rustdoc::all)]
// todo remove once https://github.com/rust-lang/rust/issues/101730 is stable
#![feature(rustdoc_missing_doc_code_examples)]
#![allow(rustdoc::missing_doc_code_examples)]

// `uefi-exts` requires access to memory allocation APIs.
#[cfg(feature = "exts")]
Expand Down
6 changes: 6 additions & 0 deletions uefi-macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#![recursion_limit = "128"]
#![deny(rustdoc::all)]
// todo remove once https://github.com/rust-lang/rust/issues/101730 is stable
#![feature(rustdoc_missing_doc_code_examples)]
#![allow(rustdoc::missing_doc_code_examples)]

//! Code generation macros for the `uefi` crate.

extern crate proc_macro;

Expand Down
4 changes: 4 additions & 0 deletions uefi-services/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
#![no_std]
#![feature(alloc_error_handler)]
#![feature(abi_efiapi)]
#![deny(rustdoc::all)]
// todo remove once https://github.com/rust-lang/rust/issues/101730 is stable
#![feature(rustdoc_missing_doc_code_examples)]
#![allow(rustdoc::missing_doc_code_examples)]

#[macro_use]
extern crate log;
Expand Down
7 changes: 2 additions & 5 deletions xtask/src/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,6 @@ impl Cargo {
}
CargoAction::Doc { open } => {
action = "doc";
if self.warnings_as_errors {
cmd.env("RUSTDOCFLAGS", "-Dwarnings");
}
if open {
extra_args.push("--open");
}
Expand Down Expand Up @@ -237,11 +234,11 @@ mod tests {
packages: vec![Package::Uefi, Package::Xtask],
release: false,
target: None,
warnings_as_errors: true,
warnings_as_errors: false,
};
assert_eq!(
command_to_string(&cargo.command().unwrap()),
"RUSTDOCFLAGS=-Dwarnings cargo doc --package uefi --package xtask --features alloc --open"
"cargo doc --package uefi --package xtask --features alloc --open"
);
}
}