rummy 0.2.0

a crate for the card game Rummy
Documentation
1
2
3
4
5
6
7
8
9
10
//! The basic form of Rummy. By default, follows the rules defined [here](https://en.wikipedia.org/wiki/Rummy#Basic_rummy).
//! However, you can override some things with a [`BasicConfig`](config::BasicConfig) and [`DeckConfig`](crate::cards::deck::DeckConfig).
//!
//! You can find the actual game in [`game`].

pub mod config;
pub mod game;
pub mod rules;
pub mod score;
pub mod state;