listdisk_rs/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3#[cfg(target_os = "windows")]
4pub mod win32;
5
6#[cfg(feature = "serde")]
7pub use serde;
8#[cfg(feature = "encoding")]
9pub use utf16string;
10#[cfg(feature = "win32_sys")]
11pub use windows_sys;
12#[cfg(feature = "wmi")]
13pub use wmi;