Skip to content

Commit

Permalink
Add missing targot os section
Browse files Browse the repository at this point in the history
  • Loading branch information
simlay authored and kornelski committed Dec 6, 2023
1 parent cbe5ca6 commit 54d9050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions security-framework-sys/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![allow(bad_style)]

#[cfg_attr(
any(target_os = "macos", target_os = "ios"),
any(target_os = "macos", target_os = "ios", target_os = "tvos", target_os = "watchos"),
link(name = "Security", kind = "framework")
)]
extern "C" {}
Expand All @@ -12,7 +12,7 @@ pub mod access_control;
#[cfg(target_os = "macos")]
pub mod authorization;
pub mod base;
#[cfg(any(target_os = "macos", target_os = "ios"))]
#[cfg(any(target_os = "macos", target_os = "ios", target_os = "tvos", target_os = "watchos"))]
pub mod certificate;
#[cfg(target_os = "macos")]
pub mod certificate_oids;
Expand Down

0 comments on commit 54d9050

Please sign in to comment.