minimax/Cargo.toml

13 lines
218 B
TOML
Raw Permalink Normal View History

2024-02-26 08:54:35 -08:00
[package]
2024-03-05 14:35:26 -08:00
name = "minimax"
2024-02-26 08:54:35 -08:00
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.80"
2024-03-05 11:43:23 -08:00
clap = { version = "4.5.1", features = ["derive"] }
2024-03-04 15:48:55 -08:00
itertools = "0.12.1"
2024-02-26 08:54:35 -08:00
rand = "0.8.5"
2024-03-06 09:56:04 -08:00
rayon = "1.9.0"
2024-02-26 08:54:35 -08:00
termion = "3.0.0"