dirhash 0.2.0

Take a hash of a folder to see if it's changes
Documentation
1
2
3
4
5
6
use dirhash;

fn main(){
    let x = dirhash::hash("src/lib.rs").unwrap();
    println!("{}", x);
}