Restructure to library / binary combo

This commit is contained in:
2018-05-22 01:07:49 +02:00
parent 236d6839be
commit 2a37620224
11 changed files with 33 additions and 35 deletions

11
src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
pub mod ijvmreader;
pub mod binread;
pub mod block;
pub mod ops;
pub mod machine;
pub mod stack;
pub mod pool;
pub mod frame;
pub mod netstack;
type Result<T> = ::std::result::Result<T, &'static str>;