Skip to content

Commit

Permalink
Allow UniformTypeIdentifiers.framework to be dynamically linked
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Sep 4, 2024
1 parent 0bd2a31 commit 7404987
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,11 @@ static DARWIN_ALLOWED_DYLIBS: Lazy<Vec<MachOAllowedDylib>> = Lazy::new(|| {
max_compatibility_version: "1.0.0".try_into().unwrap(),
required: true,
},
MachOAllowedDylib {
name: "/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers".to_string(),
max_compatibility_version: "1.0.0".try_into().unwrap(),
required: true,
},
MachOAllowedDylib {
name: "/usr/lib/libedit.3.dylib".to_string(),
max_compatibility_version: "2.0.0".try_into().unwrap(),
Expand Down

0 comments on commit 7404987

Please sign in to comment.