summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 44eb26625845b0a93d2d872683ebc923b323b1a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![feature(unicode)]

extern crate byteorder;
extern crate rand;
extern crate unicode_xid;

pub mod types;
pub use types::*;

pub mod synth;
pub mod proto;
pub mod lang;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
    }
}