More encoding work

This commit is contained in:
Carl Lerche
2017-06-02 14:33:09 -07:00
parent 2f8095e71a
commit a7da819e45
6 changed files with 310 additions and 194 deletions

View File

@@ -1,6 +1,6 @@
mod encoder;
mod decoder;
mod entry;
mod header;
mod huffman;
mod table;
@@ -8,5 +8,5 @@ mod table;
mod test;
pub use self::encoder::Encoder;
pub use self::entry::{Entry, Key};
pub use self::header::Header;
pub use self::decoder::{Decoder, DecoderError};