extract varint/zigzag stuff to separate module

They can be used for more than recording. In particular, I plan to use these
from the db module for the representation of signals/events.
This commit is contained in:
Scott Lamb
2017-01-03 10:33:53 -08:00
parent 586902d30f
commit a7e1c9473a
3 changed files with 194 additions and 156 deletions

View File

@@ -69,6 +69,7 @@ use std::sync::atomic::{AtomicBool, Ordering};
use std::thread;
mod clock;
mod coding;
mod db;
mod dir;
mod error;