Add serialization/deseriation support to event log

See bincode and serde_json for usage:
https://github.com/TyOverby/bincode

Fixes #1
This commit is contained in:
Greg Fitzgerald
2018-02-20 16:26:11 -07:00
parent bd84cf6586
commit fa4e232d73
3 changed files with 11 additions and 6 deletions

View File

@ -1,6 +1,9 @@
#![cfg_attr(feature = "unstable", feature(test))]
pub mod log;
pub mod historian;
extern crate digest;
extern crate generic_array;
extern crate rayon;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate sha2;