hardware_query/platform/
mod.rs

1/// Platform-specific hardware detection modules
2///
3/// This module provides enhanced platform-specific implementations
4/// for detailed hardware information gathering beyond what's available
5/// through generic cross-platform libraries.
6#[cfg(target_os = "windows")]
7pub mod windows;
8
9#[cfg(target_os = "linux")]
10pub mod linux;
11
12#[cfg(target_os = "macos")]
13pub mod macos;
14
15/// Re-export platform-specific modules for easier access
16#[cfg(target_os = "windows")]
17pub use windows::*;
18
19#[cfg(target_os = "linux")]
20pub use linux::*;
21
22#[cfg(target_os = "macos")]
23pub use macos::*;