diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-21 16:31:40 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-21 16:31:40 -0400 |
commit | 3d370b9a980d88f884ddd87b62bc785c3b963e1d (patch) | |
tree | 2f35167101c09891ed48bc8cbf3603e993ec7341 /src/lib.rs | |
parent | dcfc4e82386f41bd36c3b102512bd225fc5331b6 (diff) |
Tokenizer for DSL
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,4 +1,5 @@ #![feature(associated_consts)] +#![feature(unicode)] extern crate byteorder; extern crate rand; @@ -8,6 +9,7 @@ pub use types::*; pub mod synth; pub mod proto; +pub mod lang; #[cfg(test)] mod tests { |