hashdir 0.2.0

Generate a cryptographic view of a directory's contents
Documentation
1
2
3
4
5
6
7
use hashdir::DirNode;

fn main() {
  let path = std::env::current_dir().unwrap();
  let node = DirNode::from_path(&path, &path).unwrap();
  println!("{:#?}", node);
}