1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![warn(missing_docs)]

//! # playing-cards
//! 
//! `playing-cards` is a library for developing card games. Ranging from dealing cards from a
//! deck to hand evaluations.

#![feature(test)]
extern crate test;

#[macro_use]
extern crate num_derive;

pub mod core;

#[cfg(feature = "poker")]
#[macro_use]
extern crate lazy_static;

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

#[cfg(test)]
mod tests {}