1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-04 02:24:12 +02:00

update to new bitreader

This commit is contained in:
Robin Appelman 2019-02-28 21:55:53 +01:00
commit e7b9f5ecbb
25 changed files with 378 additions and 590 deletions

13
src/lib.rs Normal file
View file

@ -0,0 +1,13 @@
use std::error::Error;
use std::fs;
pub use crate::demo::{
parser::{DemoParser, Parse, ParseError, ParserState, Result},
Demo, Stream,
};
pub use bitstream_reader::Result as ReadResult;
mod demo;
mod state;
mod test;