summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 92ec3c592279e5a202ee366586c9a78c5c6a16f6 (plain)
1
2
3
4
5
6
7
8
use checksums_hands_on::checksum;
use std::path::Path;

fn main() {
    let sum = checksum(Path::new("Cargo.toml")).unwrap();
    sum.print();
}