18 lines
410 B
TOML
18 lines
410 B
TOML
[package]
|
|
name = "minimax"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
itertools = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
rhai = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
rhai = { workspace = true, features = ["wasm-bindgen"] }
|
|
web-sys = { workspace = true }
|
|
wasm-bindgen = { workspace = true }
|