Use sha256 hashes instead of Rust's builtin hasher.

Causes a 20x performance degradation. Enabling asm did not
speed things up.
This commit is contained in:
Greg Fitzgerald
2018-02-19 16:17:13 -07:00
parent b317d13b44
commit 0297edaf1f
6 changed files with 72 additions and 55 deletions

View File

@ -1,5 +1,7 @@
#![cfg_attr(feature = "unstable", feature(test))]
pub mod log;
pub mod historian;
extern crate digest;
extern crate itertools;
extern crate rayon;
extern crate sha2;