Skip to content

Commit

Permalink
Bump bindgen from 0.68.1 to 0.69.2 (#32)
Browse files Browse the repository at this point in the history
* Bump bindgen from 0.68.1 to 0.69.2

Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.68.1 to 0.69.2.
- [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.68.1...v0.69.2)

---
updated-dependencies:
- dependency-name: bindgen
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix linting

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yota Toyama <[email protected]>
  • Loading branch information
dependabot[bot] and raviqqe authored Jan 15, 2024
1 parent ac7046d commit 7bf96a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ links = "MLIR"
license-file = "LICENSE"

[build-dependencies]
bindgen = "0.68.1"
bindgen = "0.69.2"
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fn run() -> Result<(), Box<dyn Error>> {
bindgen::builder()
.header("wrapper.h")
.clang_arg(format!("-I{}", llvm_config("--includedir")?))
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
.generate()
.unwrap()
.write_to_file(Path::new(&env::var("OUT_DIR")?).join("bindings.rs"))?;
Expand Down

0 comments on commit 7bf96a4

Please sign in to comment.