diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,7 +1,12 @@ +#![feature(associated_consts)] + +extern crate byteorder; + pub mod types; pub use types::*; pub mod synth; +pub mod proto; #[cfg(test)] mod tests { |