Skip to content

Commit d382387

Browse files
committed
update bindgen to v0.58
1 parent ad793cf commit d382387

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ucx-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[build-dependencies]
10-
bindgen = "0.54"
10+
bindgen = "0.58"

ucx-sys/build.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ fn main() {
2222
// included header files changed.
2323
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
2424
// .parse_callbacks(Box::new(ignored_macros))
25-
.whitelist_function("uc[tsmp]_.*")
26-
.whitelist_var("uc[tsmp]_.*")
27-
.whitelist_var("UC[TSMP]_.*")
28-
.whitelist_type("uc[tsmp]_.*")
25+
.allowlist_function("uc[tsmp]_.*")
26+
.allowlist_var("uc[tsmp]_.*")
27+
.allowlist_var("UC[TSMP]_.*")
28+
.allowlist_type("uc[tsmp]_.*")
2929
.rustified_enum(".*")
3030
.bitfield_enum("ucp_feature")
3131
.bitfield_enum(".*_field")

0 commit comments

Comments
 (0)