//! Private library utilities that are not exposed to clients since we don't
//! want to make semver guarantees about them
usestd::path::Path;usewalkdir::WalkDir;/// Private helper to walk a dir and also follow symbolic links.
pubfnwalk_dir<P:AsRef<Path>>(folder: P)-> WalkDir{WalkDir::new(folder).follow_links(true)}