Skip to content

Commit

Permalink
fix use of deprecated bindgen constant
Browse files Browse the repository at this point in the history
  • Loading branch information
molpopgen committed Dec 1, 2023
1 parent fae0afd commit 5179e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fn main() {
.allowlist_function("kastore.*")
// Tell cargo to invalidate the built crate whenever any of the
// included header files changed.
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
// Finish the builder and generate the bindings.
.generate()
// Unwrap the Result and panic on failure.
Expand Down

0 comments on commit 5179e0b

Please sign in to comment.