dua-cli 2.43.0

A tool to conveniently learn about the disk usage of directories, fast!
Documentation
//! Public library API for `dua` core traversal and aggregation functionality.
//!
//! This crate powers the `dua` binary and can also be used as a library.
#![deny(unsafe_code)]
#![deny(missing_docs)]

pub(crate) use dua_core as walk;
pub use dua_core::Options as TraversalOptions;

mod aggregate;
mod common;
mod config;
pub use config::Config;
mod crossdev;
mod inodefilter;
mod tree;

mod stacks;
/// Filesystem traversal, in-memory tree representation, and traversal events.
pub mod traverse;

pub use aggregate::aggregate;
#[cfg(any(windows, target_os = "macos"))]
pub use aggregate::aggregate_entries;
pub use common::*;
pub(crate) use inodefilter::InodeFilter;
pub use stacks::stacks;
pub use tree::aggregate_tree;