-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
32 lines (29 loc) · 822 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
[package]
name = "robopoker"
version = "0.1.1"
authors = ["Kelechi Ukah <ukahkelechi@gmail.com>"]
description = "Implementations of Meta's Pluribus 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]
cards = {path = "./cards", features = ["std"]}
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"
env_logger = "0.11.5"
rayon = "1.10.0"
byteorder = "1.5.0"
itertools = "0.13.0"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "benchmarks"
harness = false