22 lines
358 B
TOML
22 lines
358 B
TOML
[package]
|
|
name = "minimax"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.80"
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
itertools = "0.12.1"
|
|
rand = "0.8.5"
|
|
rayon = "1.9.0"
|
|
rhai = { version = "1.23.4", features = [
|
|
"sync",
|
|
"no_time",
|
|
"no_module",
|
|
"no_custom_syntax",
|
|
"no_std",
|
|
"only_i64",
|
|
"f32_float",
|
|
] }
|
|
termion = "3.0.0"
|