summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 7b1550211d074aef93daaa89a30970db14f1856c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate serde;
extern crate serde_json;

#[macro_use]
extern crate serde_derive;

extern crate rand;
extern crate time;

extern crate rayon;

pub mod input;
pub mod engine;
pub mod strategy;