Skip to content

Commit 206710a

Browse files
committed
Update bindgen requirement to =0.70.1
Includes some lint `allow()`s for expected violations by default.
1 parent b98248e commit 206710a

File tree

3 files changed

+83
-8
lines changed

3 files changed

+83
-8
lines changed

ash/src/vk.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,7 @@ mod feature_extensions;
2525
mod features;
2626
pub use features::*;
2727
/// Native bindings from Vulkan headers, generated by bindgen
28-
#[allow(
29-
nonstandard_style,
30-
clippy::unnecessary_operation,
31-
clippy::useless_transmute,
32-
clippy::identity_op
33-
)]
28+
#[allow(clippy::useless_transmute, nonstandard_style)]
3429
pub mod native;
3530
mod platform_types;
3631
pub use platform_types::*;

0 commit comments

Comments
 (0)