Block a user
klondike (0.1.0)
Published 2026-05-18 20:15:15 +00:00 by Quaternions
Installation
[registry]
default = "gitea"
[registries.gitea]
index = "sparse+https://git.aleshym.co/api/packages/Quaternions/cargo/" # Sparse index
# index = "https://git.aleshym.co/Quaternions/_cargo-index.git" # Git
[net]
git-fetch-with-cli = truecargo add klondike@0.1.0About this package
Card Game
card_game is a library to implement card games. Mainly interesting for the Game trait and the Session type. Contains klondike as the reference implementation.
Example
use card_game::{Session, Game};
use klondike::Klondike;
// create game session
let game = Klondike::with_seed(123);
let mut session = Session::new_default(game);
// play game a bit
while let Some(instruction) = session.possible_instructions().next() {
session.process_instruction(instruction);
// quit after 1000 moves
if 1000 < session.stats().stats().moves() {
break;
}
}
// did win
let is_win = session.is_win();
// print session history
for (i, instruction) in session.history().iter().enumerate() {
println!("move {i} = {instruction:?}");
}
println!("is_win = {is_win}");
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
| ID | Version |
|---|---|
| card_game | ^0.2.0 |
| rand | ^0.10.1 |
Details
2026-05-18 20:15:15 +00:00
Assets (1)
Versions (1)
View all
Cargo
0
10 KiB
klondike-0.1.0.crate
10 KiB
0.1.0
2026-05-18