blackjack

Crates.ioblackjack
lib.rsblackjack
version0.1.1
sourcesrc
created_at2019-05-14 19:38:50.301239
updated_at2020-07-20 18:01:07.802678
descriptionCrate for the popular casino card game Blackjack
homepagehttps://arc676.github.io/projects/blackjack.html
repositoryhttps://github.com/Arc676/Blackjack
max_upload_size
id134372
size64,381
Mario (Fatcat560)

documentation

README

Blackjack

A Rust backend crate and command line frontend for the popular card game, Blackjack. This crate is designed to be compilable for linking with C.

Crate

This crate is available on crates.io.

The library provides data types for representing decks (specifically, multiple decks combined into a single deck), players, hands, and individual cards. These structs provide the necessary methods for implementing a simple game of Blackjack.

The Rust command line frontend provides a sample implementation as well as functional gameplay experience.

Linking with C

The repository includes a C header file indicating the exposed methods of the library. A command line frontend to the library written in C is also available. This can be compiled using the included Makefile. If the Rust library output is stored at a path other than project_root/target/debug, the references will have to be updated.

Licensing

Project available under GPLv3. See LICENSE for full license text.

Commit count: 31

cargo fmt