simple_unc/lib.rs
1//! Please see the [README] for a high-level overview,
2//! and the [`SimpleUnc`] struct for the detailed features.
3//!
4//! [README]: https://github.com/kojiishi/simple-unc
5
6mod display;
7#[cfg(windows)]
8mod drive_path;
9#[cfg(windows)]
10mod drives;
11#[cfg(windows)]
12mod path_ext;
13mod simple_unc;
14
15pub use display::Display;
16#[cfg(windows)]
17pub(crate) use drive_path::DrivePath;
18#[cfg(windows)]
19pub(crate) use drives::Drives;
20#[cfg(windows)]
21pub(crate) use path_ext::PathExt;
22pub use simple_unc::SimpleUnc;