Skip to content

Commit

Permalink
Update bindgen from 0.68 to 0.69.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Nov 20, 2023
1 parent 36b8743 commit 985bf03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion z3-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ homepage = "https://github.com/prove-rs/z3.rs"
repository = "https://github.com/prove-rs/z3.rs.git"

[build-dependencies]
bindgen = { version = "0.68", default-features = false, features = ["runtime"] }
bindgen = { version = "0.69", default-features = false, features = ["runtime"] }
cmake = { version = "0.1.49", optional = true }
vcpkg = { version = "0.2.15", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion z3-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ fn generate_binding(header: &str) {
] {
let mut enum_bindings = bindgen::Builder::default()
.header(header)
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
.generate_comments(false)
.rustified_enum(format!("Z3_{x}"))
.allowlist_type(format!("Z3_{x}"));
Expand Down

0 comments on commit 985bf03

Please sign in to comment.