rummy 0.2.0

a crate for the card game Rummy
Documentation
1
2
3
4
5
6
7
8
9
//! Contains most of the actual game-related code.

pub mod action;
pub mod error;
pub mod rules;
pub mod score;
pub mod state;
pub mod r#trait;
pub mod variants;