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

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() {
    }
}