-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (44 loc) · 987 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
[package]
name = "xadrez"
version = "0.1.0"
edition = "2021"
description = "A chess engine written in Rust."
repository = "https://github.com/jovialen/xadrez"
license-file = "LICENSE"
readme = "README.md"
build = "src/build.rs"
[profile.release]
opt-level = 3
[profile.dev]
opt-level = 3
[profile.test]
opt-level = 3
[profile.bench]
opt-level = 3
[features]
nnue = ["dep:nnue", "dep:lazy_static", "dep:binread"]
[dependencies]
num = "0.4"
num-derive = "0.3"
num-traits = "0.2"
itertools = "0.10.5"
binread = { version = "2", features = ["const_generics"], optional = true }
nnue = { git = "https://github.com/analog-hors/nnue-rs", optional = true }
lazy_static = { version = "1.4.0", optional = true }
rustc-hash = "1.1.0"
[dev-dependencies]
criterion = "0.4.0"
[build-dependencies]
num = "0.4"
num-derive = "0.3"
num-traits = "0.2"
rand = "0.8.5"
[[bench]]
name = "perft"
harness = false
[[bench]]
name = "evaluate"
harness = false
[[bench]]
name = "search"
harness = false