paq files to hash.
Hash a single file or all files in directory recursively.
cargo install --path . from root of repository.Run paq [src] to hash src (file or directory).
For help, run paq --help.
Add paq: "0.4.0" to Cargo.toml.
```rust use paq;
let source = "/path/to/source"; let hash: String = paq::hash_source(source);
println!("{}", hash); ```
Needs tests!