fruit 0.1.0

Tree but just the juicy bits
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Fruit - A tree command that respects .gitignore and shows file comments

pub mod comments;
pub mod git;
pub mod output;
pub mod tree;

pub use comments::extract_first_comment;
pub use git::GitFilter;
pub use output::{OutputConfig, TreeFormatter};
pub use tree::{TreeNode, TreeWalker, WalkerConfig};