rsure 0.9.4

Rsure captures hashes and metadata about a tree of files, and can later verify these hashes and metadata to determine if the files have changed. It supports incremental updates, and includes an standalone executable for scanning and checking trees.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Show module.

use crate::{Result, Store, Version};

pub fn show_tree(store: &dyn Store) -> Result<()> {
    for node in store.load_iter(Version::Latest)? {
        let node = node?;
        println!("{:?}", node);
    }
    Ok(())
}