standard_card/lib.rs
1//! The `StandardCard` library provides a programmer-friendly way to represent a standard deck of 52 cards.
2//!
3//! It prioritizes both fast access to card information and minimal storage footprint, making it ideal for various game development or card manipulation tasks.
4//!
5//! `See each modules documentation for more details.`
6
7pub mod card;
8pub mod deck;