blob: 4e087241f592ee5e6bdd672f9cd8e1577a2aa616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#![feature(associated_consts)]
extern crate byteorder;
extern crate rand;
pub mod types;
pub use types::*;
pub mod synth;
pub mod proto;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}
|