shuftlib 0.3.1

A generic library for card games and related topics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Allow panics, unwraps, and expects in test code
#![cfg_attr(
    test,
    allow(
        clippy::unwrap_used,
        clippy::expect_used,
        clippy::panic,
        clippy::panic_in_result_fn
    )
)]
#![doc = include_str!("../README.md")]

/// Core primitives for card games (cards, decks, game mechanics).
pub mod core;
/// Contains the logic for the tressette game.
pub mod tressette;
/// Trick-taking game mechanics available at the crate root.
pub mod trick_taking;