-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (37 loc) · 810 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
[package]
name = "inanis"
version = "1.5.0"
authors = [ "Pawel Osikowski" ]
repository = "https://github.com/Tearth/Inanis"
license = "GPL-3.0"
edition = "2021"
[lib]
doctest = false
[features]
dev = []
syzygy = [ "dep:bindgen", "dep:cc" ]
[dependencies]
common = { path = "./common/" }
[build-dependencies]
common = { path = "./common/" }
cc = { version = "1.0.103", optional = true }
bindgen = { version = "0.69.4", optional = true }
[dev-dependencies]
criterion = { version = "0.3.6", features = [ "html_reports" ] }
[profile.release]
panic = "abort"
lto = true
strip = true
codegen-units = 1
[[bench]]
name = "evaluation_benchmark"
harness = false
[[bench]]
name = "fen_benchmark"
harness = false
[[bench]]
name = "perft_benchmark"
harness = false
[[bench]]
name = "see_benchmark"
harness = false