-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (49 loc) · 1.15 KB
/
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
[package]
name = "byte-knight"
version = "1.0.0"
# 2024 isn't stable yet
edition = "2021"
authors = ["Paul Tsouchlos <developer.paul.123@gmail.com>"]
license = "GPL-3.0"
[workspace]
members = ["engine", "chess"]
[dependencies]
engine = { path = "engine" }
chess = { path = "chess" }
anyhow = "1.0.93"
arrayvec = "0.7.6"
clap = { version = "4.5.21", features = ["derive"] }
colored = "2.1.0"
console = { version = "0.15.8", features = ["windows-console-colors"] }
csv = "1.3.1"
indicatif = { version = "0.17.9", features = ["rayon"] }
itertools = "0.13.0"
rand = { version = "0.8.5", features = ["small_rng"] }
rand_chacha = "0.3.1"
rayon = "1.10.0"
serde = { version = "1.0.215", features = ["derive"] }
stopwatch = "0.0.7"
thiserror = "2.0.3"
uci-parser = { version = "0.2.0", features = [
"parse-go-perft",
"parse-position-kiwipete",
"types",
] }
[profile.dev]
opt-level = 1
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = 'abort'
debug = false
rpath = false
debug-assertions = false
incremental = false
overflow-checks = false