We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e396da + df28e8b commit 1efa4cbCopy full SHA for 1efa4cb
1 file changed
src/lib.rs
@@ -75,6 +75,9 @@ use macos as os;
75
#[cfg(target_os = "ios")]
76
use ios as os;
77
78
+#[cfg(target_os = "visionos")]
79
+use ios as os;
80
+
81
#[cfg(target_os = "haiku")]
82
use haiku as os;
83
@@ -103,6 +106,7 @@ use unix as os;
103
106
target_os = "illumos",
104
107
target_os = "solaris",
105
108
target_os = "ios",
109
+ target_os = "visionos",
110
target_os = "macos",
111
target_os = "windows",
112
target_os = "haiku",
@@ -352,6 +356,9 @@ mod macos;
352
356
353
357
mod ios;
354
358
359
360
+mod ios;
361
355
362
363
mod haiku;
364
0 commit comments