We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6465fc commit 21a05f9Copy full SHA for 21a05f9
2 files changed
Cargo.toml
@@ -24,7 +24,7 @@ terminal-logging = ["simple_logger"]
24
with_dbus = ["dbus"]
25
default = ["with_dbus"]
26
27
-[target.'cfg(target_os = "macos")'.dependencies]
+[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
28
mach2 = "0.4"
29
libc = "0.2"
30
src/lib.rs
@@ -85,7 +85,7 @@ impl Error for AudioThreadPriorityError {
85
}
86
87
cfg_if! {
88
- if #[cfg(target_os = "macos")] {
+ if #[cfg(any(target_os = "macos", target_os = "ios"))] {
89
mod rt_mach;
90
extern crate mach2;
91
extern crate libc;
0 commit comments