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

extern crate byteorder;
extern crate rand;

pub mod types;
pub use types::*;

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

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