broot 0.13.3

Fuzzy Search + tree + cd
Documentation
//////////////////// UNIX

#[cfg(unix)]
pub mod permissions_unix;

#[cfg(unix)]
pub fn supported() -> bool {
    true
}

#[cfg(unix)]
pub use permissions_unix::*;

//////////////////// WINDOWS

#[cfg(windows)]
pub fn supported() -> bool {
    false
}