Skip to content

Commit e43d811

Browse files
authored
Merge pull request #2 from roc-lang/whitelist_fix
replace whitelist with allowlist
2 parents 81ec98f + 77ae098 commit e43d811

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wasm3-sys/build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ fn gen_bindings() {
4040
.arg("--no-layout-tests")
4141
.arg("--default-enum-style=moduleconsts")
4242
.arg("--no-doc-comments")
43-
.arg("--whitelist-function")
43+
.arg("--allowlist-function")
4444
.arg(WHITELIST_REGEX_FUNCTION)
45-
.arg("--whitelist-type")
45+
.arg("--allowlist-type")
4646
.arg(WHITELIST_REGEX_TYPE)
47-
.arg("--whitelist-var")
47+
.arg("--allowlist-var")
4848
.arg(WHITELIST_REGEX_VAR)
4949
.arg("--no-derive-debug");
5050
for &ty in PRIMITIVES.iter() {

0 commit comments

Comments
 (0)