#[cfg(feature = "acl")]
pub(crate) mod acl;
pub(crate) mod env;
pub(crate) mod fmt;
pub(crate) mod fs;
mod globs;
pub(crate) mod io;
#[cfg(feature = "memmap")]
pub(crate) mod mmap;
pub(crate) mod os;
mod path;
pub(crate) mod process;
pub(crate) mod str;
mod windows_glob;
pub(crate) use {globs::*, path::*, windows_glob::*};
pub(crate) const VCS_FILES: &[&str] = &[
"CVS",
".cvsignore",
"RCS",
"SCCS",
".svn",
".git",
".gitignore",
".gitattributes",
".gitmodules",
".arch-ids",
"{arch}",
"=RELEASE-ID",
"=meta-update",
"=update",
".bzr",
".bzrignore",
".bzrtags",
".hg",
".hgignore",
".hgtags",
"_darcs",
];