Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rclrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ tokio = { version = "*", features = ["rt", "time", "macros"] }

[build-dependencies]
# Needed for FFI
bindgen = "0.66.1"
bindgen = "0.70"
# Needed for uploading documentation to docs.rs
cfg-if = "1.0.0"

Expand Down
2 changes: 1 addition & 1 deletion rclrs/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fn main() {
.default_enum_style(bindgen::EnumVariation::Rust {
non_exhaustive: false,
})
.parse_callbacks(Box::new(bindgen::CargoCallbacks));
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()));

// Invalidate the built crate whenever this script or the wrapper changes
println!("cargo:rerun-if-changed=build.rs");
Expand Down
Loading