Behaves more like a client/server, rather than just taking a decision function. The CLI logic is more complex now, but the game is more flexible and and support splits (basically branching the hand off)
12 lines
227 B
TOML
12 lines
227 B
TOML
[package]
|
|
name = "blackjack"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.98"
|
|
clap = { version = "4.5.40", features = ["derive"] }
|
|
console = "0.16.0"
|
|
itertools = "0.14.0"
|
|
rand = "0.9.1"
|
|
thiserror = "2.0.12"
|