simple-unc 0.2.1

Simplify Windows UNC path for `fs::canonicalize`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(windows)]
mod drive_path;
#[cfg(windows)]
mod drives;
#[cfg(windows)]
mod path_ext;
mod simple_unc;

#[cfg(windows)]
pub(crate) use drive_path::DrivePath;
#[cfg(windows)]
pub(crate) use drives::Drives;
#[cfg(windows)]
pub(crate) use path_ext::PathExt;
pub use simple_unc::SimpleUnc;