summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 155c9e9cab1922a2a2c8c180f18d58552184116f (plain)
1
2
3
4
5
6
7
8
9
mod lib;
use lib::checksum;
use std::path::Path;

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