Skip to content

Commit 535b21d

Browse files
committed
Allow UniformTypeIdentifiers.framework to be dynamically linked
1 parent b96ea57 commit 535b21d

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
@@ -394,6 +394,11 @@ static DARWIN_ALLOWED_DYLIBS: Lazy<Vec<MachOAllowedDylib>> = Lazy::new(|| {
394394
max_compatibility_version: "1.0.0".try_into().unwrap(),
395395
required: true,
396396
},
397+
MachOAllowedDylib {
398+
name: "/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers".to_string(),
399+
max_compatibility_version: "1.0.0".try_into().unwrap(),
400+
required: true,
401+
},
397402
MachOAllowedDylib {
398403
name: "/usr/lib/libedit.3.dylib".to_string(),
399404
max_compatibility_version: "2.0.0".try_into().unwrap(),

0 commit comments

Comments
 (0)