dumap-core 1.1.0

Core library for dumap: filesystem scanning, tree construction, and HTML treemap generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod category;
pub mod error;
pub mod html;
mod path_util;
pub mod scan;
pub mod tree;

pub use category::FileCategory;
pub use error::ScanError;
pub use html::generate_html;
pub use path_util::clean_path;
pub use scan::{ScanConfig, ScanProgress, scan_directory};
pub use tree::{DirNode, EChartsNode, FileTree, NodeId, NodeKind, TreeNode, build_file_tree};