1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20

//! pusoy dos core crate

extern crate rand;
#[macro_use]
extern crate serde_derive;

extern crate serde;
extern crate serde_json;

///! generic(ish) card module
#[macro_use]
pub mod cards;
///! game specific module
pub mod game;

#[cfg(test)]
mod tests;