Move Event into its own crate

The log crate was starting to be the catch-all for all things
related to entries, events, signatures, and hashes. This split
shows us that:

* Event depends only on signatures, not on hashes [directly]
* All event testing was done via log testing (shame on me)
* Accounting depends only on events
This commit is contained in:
Greg Fitzgerald
2018-03-02 08:43:54 -07:00
parent 662e10c3e0
commit 1b77e8a69a
9 changed files with 134 additions and 109 deletions

View File

@ -1,5 +1,6 @@
#![cfg_attr(feature = "unstable", feature(test))]
pub mod log;
pub mod event;
pub mod historian;
pub mod accountant;
pub mod accountant_skel;