Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Oct 4, 2023
1 parent af72456 commit c113099
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ path = "../targets"

[features]
default = []
doc = []
docs = []
# generated features
Wdk = []
Wdk_Foundation = ["Wdk"]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs
#![no_std]
#![doc(html_no_source)]
#![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, clippy::all)]
#![cfg_attr(not(feature = "doc"), doc(hidden))]
#![cfg_attr(not(feature = "docs"), doc(hidden))]

extern crate self as windows_sys;
mod Windows;
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ windows-interface = { path = "../interface", version = "0.52.0", optional = tru

[features]
default = []
doc = []
docs = []
deprecated = []
implement = ["windows-implement", "windows-interface", "windows-core/implement"]
# generated features
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs

#![doc(html_no_source)]
#![allow(non_snake_case, clashing_extern_declarations, non_upper_case_globals, non_camel_case_types, clippy::all)]
#![cfg_attr(not(feature = "doc"), doc(hidden))]
#![cfg_attr(not(feature = "docs"), doc(hidden))]

extern crate self as windows;
pub use Windows::*;
Expand Down

0 comments on commit c113099

Please sign in to comment.