summaryrefslogtreecommitdiffstats
path: root/vendor/sysinfo/src/apple/macos/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sysinfo/src/apple/macos/mod.rs')
-rw-r--r--vendor/sysinfo/src/apple/macos/mod.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/sysinfo/src/apple/macos/mod.rs b/vendor/sysinfo/src/apple/macos/mod.rs
new file mode 100644
index 000000000..172bbfddc
--- /dev/null
+++ b/vendor/sysinfo/src/apple/macos/mod.rs
@@ -0,0 +1,17 @@
+// Take a look at the license at the top of the repository in the LICENSE file.
+
+pub mod disk;
+pub mod ffi;
+
+#[cfg(not(feature = "apple-sandbox"))]
+pub mod system;
+
+#[cfg(not(feature = "apple-sandbox"))]
+pub mod component;
+#[cfg(not(feature = "apple-sandbox"))]
+pub mod process;
+
+#[cfg(feature = "apple-sandbox")]
+pub use crate::sys::app_store::component;
+#[cfg(feature = "apple-sandbox")]
+pub use crate::sys::app_store::process;