21 lines
274 B
TOML
21 lines
274 B
TOML
[package]
|
|
name = "othello"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
# for profiling
|
|
debug = true
|
|
|
|
lto = true
|
|
|
|
[dependencies]
|
|
arrayvec = "0.7"
|
|
bitvec = "1"
|
|
either = "1.13"
|
|
indicatif = "0.17"
|
|
lazy_static = "1.5"
|
|
num = "0.4"
|
|
rand = "0.9"
|
|
static_assertions = "1.1"
|