Skip to content

Commit

Permalink
todo
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Sep 23, 2024
1 parent 9863c4d commit 1b841ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion crates/libs/sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ 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, missing_docs, improper_ctypes, clippy::all)]
#![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, missing_docs, clippy::all)]
#![cfg_attr(not(feature = "docs"), doc(hidden))]
// TODO: workaround for https://github.com/rust-lang/rust/issues/130757
#![allow(improper_ctypes)]

#[allow(unused_extern_crates)]
extern crate self as windows_sys;
Expand Down
4 changes: 3 additions & 1 deletion crates/libs/windows/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs

#![cfg(windows)]
#![doc(html_no_source)]
#![allow(non_snake_case, clashing_extern_declarations, non_upper_case_globals, non_camel_case_types, missing_docs, dead_code, improper_ctypes, clippy::all)]
#![allow(non_snake_case, clashing_extern_declarations, non_upper_case_globals, non_camel_case_types, missing_docs, dead_code, clippy::all)]
#![cfg_attr(not(feature = "docs"), doc(hidden))]
#![cfg_attr(all(not(feature = "std")), no_std)]
// TODO: workaround for https://github.com/rust-lang/rust/issues/130757
#![allow(improper_ctypes)]

#[allow(unused_extern_crates)]
extern crate self as windows;
Expand Down

0 comments on commit 1b841ee

Please sign in to comment.