summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: abcd44c8fbbd2f3fa4bd0e49c57bf237d20da0c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
extern crate byteorder;
extern crate rand;
extern crate unicode_xid;
extern crate xml;
#[macro_use] extern crate failure;

pub mod types;
pub use types::*;

pub mod client;
pub mod lang;
pub mod monitor;
pub mod seq;
pub mod proto;
pub mod synth;

#[cfg(feature = "graphics")]
pub mod graphics;

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