Skip to content

Commit 432e46c

Browse files
committed
Allow UniformTypeIdentifiers.framework to be dynamically linked
1 parent fed8e9e commit 432e46c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/validation.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,11 @@ static DARWIN_ALLOWED_DYLIBS: Lazy<Vec<MachOAllowedDylib>> = Lazy::new(|| {
359359
max_compatibility_version: "1.0.0".try_into().unwrap(),
360360
required: true,
361361
},
362+
MachOAllowedDylib {
363+
name: "/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers".to_string(),
364+
max_compatibility_version: "1.0.0".try_into().unwrap(),
365+
required: true,
366+
},
362367
MachOAllowedDylib {
363368
name: "/usr/lib/libedit.3.dylib".to_string(),
364369
max_compatibility_version: "2.0.0".try_into().unwrap(),

0 commit comments

Comments
 (0)