card 0.1.0

A simple crate for modelling card games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod card;
mod suit;
mod error;
mod player;
mod deck;
mod value;

pub use crate::{
    card::Card,
    suit::Suit,
    deck::Deck,
    player::Player,
    value::Value,
};