syntect/utils.rs
1//! Private library utilities that are not exposed to clients since we don't
2//! want to make semver guarantees about them
3
4use std::path::Path;
5
6use walkdir::WalkDir;
7
8/// Private helper to walk a dir and also follow symbolic links.
9pub fn walk_dir<P: AsRef<Path>>(folder: P) -> WalkDir {
10 WalkDir::new(folder).follow_links(true)
11}