libmhash 0.2.1

A file hashing library that can do multiple hashes for multile files at the same time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod hasher_server;
pub mod paranoid_hash;

pub use error::*;

mod error;
mod simple_semaphore;
mod tag_thread_pool;

pub mod prelude {
    pub use crate::{
        hasher_server::{
            Builder, BuilderTrait, HasherError, HasherProgress, HasherResult, HasherServer,
            HasherServerTrait, HasherWrapper,
        },
        paranoid_hash::HasherTag,
    };
}