summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-09-21 16:31:40 -0400
committerGraham Northup <grissess@nexusg.org>2017-09-21 16:31:40 -0400
commit3d370b9a980d88f884ddd87b62bc785c3b963e1d (patch)
tree2f35167101c09891ed48bc8cbf3603e993ec7341 /src/lib.rs
parentdcfc4e82386f41bd36c3b102512bd225fc5331b6 (diff)
Tokenizer for DSL
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4e08724..c0bd79c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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 {