freezeout_core/lib.rs
1// Copyright (C) 2025 Vince Vasta
2// SPDX-License-Identifier: Apache-2.0
3
4//! Freezeout Poker core types shared by client and server.
5#![warn(clippy::all, rust_2018_idioms, missing_docs)]
6
7#[cfg(feature = "connection")]
8pub mod connection;
9pub mod crypto;
10pub mod game_state;
11pub mod message;
12pub mod poker;