file_integrity 0.1.7

A simple lib to make integrity report
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize)]
pub struct FileList {
    pub date: String,
    pub files: Vec<FileInfo>,
}

#[derive(Serialize, Deserialize)]
pub struct FileInfo {
    pub filename: String,
    pub md5_hash: String,
}