#![ cfg_attr( feature = "no_std", no_std ) ]
#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
#![ doc( html_root_url = "https://docs.rs/proper_path_tools/latest/proper_path_tools/" ) ]
#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
#[ cfg( feature = "enabled" ) ]
use mod_interface::mod_interface;
#[ cfg( feature="no_std" ) ]
#[ macro_use ]
extern crate alloc;
mod private {}
#[ cfg( feature = "enabled" ) ]
mod_interface!
{
layer path;
layer as_path;
layer try_into_path;
layer try_into_cow_path;
layer transitive;
#[ cfg( feature = "path_utf8" ) ]
own use ::camino::{ Utf8Path, Utf8PathBuf };
#[ cfg( not( feature = "no_std" ) ) ]
own use ::std::path::{ PathBuf, Path, Component };
#[ cfg( not( feature = "no_std" ) ) ]
own use ::std::borrow::Cow;
}