fdf 0.9.2

A fast, multi-threaded filesystem search tool with regex/glob support and extremely pretty colours!
Documentation
mod glob;
mod memchr_derivations;
mod printer;
mod unique;
mod utils;
pub use glob::{Error, glob_to_regex};
pub use memchr_derivations::memrchr;
pub use unique::Unique;

#[cfg(any(
    target_os = "linux",
    target_os = "android",
    target_os = "emscripten",
    target_os = "redox",
    target_os = "hermit",
    target_os = "fuchsia",
    target_os = "macos",
    target_os = "freebsd",
    target_os = "dragonfly",
    target_os = "openbsd",
    target_os = "netbsd",
    target_os = "aix",
    target_os = "hurd"
))]
pub use utils::dirent_const_time_strlen;
#[cfg(any(
    target_os = "linux",
    target_os = "android",
    target_os = "openbsd",
    target_os = "netbsd",
    target_os = "illumos",
    target_os = "solaris"
))]
pub use utils::getdents64;
#[cfg(any(target_os = "macos", target_os = "freebsd"))]
pub use utils::getdirentries64;

pub(crate) use utils::BytePath;
pub use utils::dirent_name_length;

pub use printer::PrinterBuilder;