diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..2033ff0 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,9 @@ +#![feature(try_trait)] +#[macro_use] +extern crate quick_error; +#[macro_use] +extern crate num_derive; +extern crate byteorder; +extern crate num_traits; + +pub mod raw; |