minimax/Cargo.toml

12 lines
202 B
TOML
Raw 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"
termion = "3.0.0"