File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
- msrv = " 1.38 "
1
+ msrv = " 1.56 "
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ use core::mem::MaybeUninit;
26
26
// bcryptprimitives.dll lacks an import library, we use the windows-targets
27
27
// crate to link to it.
28
28
windows_targets:: link!( "bcryptprimitives.dll" "system" fn ProcessPrng ( pbdata: * mut u8 , cbdata: usize ) -> BOOL ) ;
29
+ #[ allow( clippy:: upper_case_acronyms) ]
29
30
pub type BOOL = i32 ;
30
31
pub const TRUE : BOOL = 1i32 ;
31
32
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ extern "system" {
19
19
#[ link_name = "SystemFunction036" ]
20
20
fn RtlGenRandom ( randombuffer : * mut c_void , randombufferlength : u32 ) -> BOOLEAN ;
21
21
}
22
+ #[ allow( clippy:: upper_case_acronyms) ]
22
23
type BOOLEAN = u8 ;
23
24
const TRUE : BOOLEAN = 1u8 ;
24
25
You can’t perform that action at this time.
0 commit comments