-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (54 loc) · 967 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
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "Nephrid"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "Nephrid"
[lib]
name = "nephrid"
[dependencies]
anyhow = "1.0.86"
const_for = "0.1.5"
crunchy = "0.2.2"
impl_ops = "0.1.1"
itertools = "0.13.0"
paste = "1.0.15"
rand = { version = "0.8.5", features = ["small_rng"] }
thiserror = "2.0.1"
typenum = "1.17.0"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "rook_attacks"
harness = false
[[bench]]
name = "bishop_attacks"
harness = false
[[bench]]
name = "queen_attacks"
harness = false
[[bench]]
name = "king_attacks"
harness = false
[[bench]]
name = "knight_attacks"
harness = false
[[bench]]
name = "perft"
harness = false
[[bench]]
name = "bitboard"
harness = false
[profile.test]
opt-level = 2
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
codegen-units = 1
lto = "fat"
[profile.bench]
inherits = "release"
[profile.profiling]
inherits = "release"
debug = true