x-path 0.1.0-alpha.0

x-path is a if-it-compiles-it-works solution for safe Rust paths with abs/rel and file/dir variants for API safety and cross platform support
Documentation
1
2
3
4
5
6
7
8
mod char_ext;
mod path_ext;
mod str_ext;

pub(crate) use char_ext::CharExt;
#[allow(unused_imports)]
pub(crate) use path_ext::{PathBufExt, PathExt};
pub(crate) use str_ext::StrExt;