-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
38 lines (34 loc) · 920 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "robopoker"
version = "0.1.1"
authors = ["Kelechi Ukah <[email protected]>"]
description = "Implementations of No-Limit Texas Hold-Em solution."
homepage = "https://github.com/krukah/robopoker"
repository = "https://github.com/krukah/robopoker"
readme = "README.md"
keywords = ["poker", "cards", "cfr", "mcts", "holdem"]
license = "MIT"
edition = "2021"
[dependencies]
colored = "2.0"
petgraph = "0.6.5"
dialoguer = "0.11.0"
rand = { version = "0.8.5", features = ["small_rng"] }
bytes = "1.0"
num_cpus = "1.16.0"
log = "0.4.22"
rayon = "1.10.0"
byteorder = "1.5.0"
indicatif = "0.17.8"
simplelog = "0.12.2"
tokio = { version = "1.0", features = ["full"] }
tokio-postgres = "0.7"
clap = { version = "4.0", features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "benchmarks"
harness = false
[features]
default = []
shortdeck = []