chksum-0.1.0-rc2 has been yanked.
chksum
Installation
Synchronous
$ cargo install chksum[sync]
Asynchronous
$ cargo install chksum[async]
Example
Synchronous
use Arch;
use md5;
use *;
let mut hash = new;
let digest = "path/to/file".chksum?;
println!;
Asynchronous
use Arch;
use md5;
use *;
let mut hash = new;
let digest = "path/to/file".chksum.await?;
println!;