-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
59 lines (49 loc) · 993 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "chess"
version = "1.0.0"
authors = ["Cody Joseph Krainock <cody@krainock.com>"]
edition = "2018"
build = "precompile/src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.5"
rand = "0.8.4"
termion = "1"
thiserror = "1.0"
structopt = "0.3"
fastrand = "1.6.0"
rustc-hash = "1.1.0"
log = "0.4.14"
env_logger = "0.9.0"
common = { path = "common" }
lru = "0.12.3"
smallvec = "1.13.2"
rayon = "1.10.0"
[build-dependencies]
precompile = { path = "precompile" }
[profile.release]
debug = true
lto = true
codegen-units = 1
opt-level = 3
incremental = false
[profile.bench]
debug = true
lto = true
codegen-units = 1
opt-level = 3
incremental = false
[dev-dependencies]
criterion = "0.3"
[[bin]]
name="chess"
path="src/main.rs"
[[bench]]
name = "count_positions_benchmark"
harness = false
[[bench]]
name = "alpha_beta_benchmark"
harness = false
[[bench]]
name = "pvp_benchmark"
harness = false