Skip to content

Commit

Permalink
build(deps): update bindgen requirement from =0.69.4 to =0.70.0
Browse files Browse the repository at this point in the history
Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version.
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rust-bindgen@v0.69.4...v0.70.0)

---
updated-dependencies:
- dependency-name: bindgen
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and MarijnS95 committed Aug 20, 2024
1 parent 0b3a134 commit 81fec82
Show file tree
Hide file tree
Showing 3 changed files with 1,780 additions and 6,433 deletions.
7 changes: 6 additions & 1 deletion ash/src/vk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ pub use features::*;
mod prelude;
pub use prelude::*;
/// Native bindings from Vulkan headers, generated by bindgen
#[allow(clippy::useless_transmute, nonstandard_style)]
#[allow(
nonstandard_style,
clippy::unnecessary_operation,
clippy::useless_transmute,
clippy::identity_op
)]
pub mod native;
mod platform_types;
pub use platform_types::*;
Expand Down
Loading

0 comments on commit 81fec82

Please sign in to comment.