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

#[macro_use]
extern crate serde_derive;

extern crate rand;
extern crate time;

extern crate rayon;

extern crate arrayvec;

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