-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 loc) · 1021 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
[package]
name = "byte-knight"
version = "2.0.0"
# 2024 isn't stable yet
edition = "2024"
authors = ["Paul Tsouchlos <[email protected]>"]
license = "GPL-3.0"
[workspace]
members = ["engine", "chess"]
[dependencies]
engine = { path = "engine" }
chess = { path = "chess" }
anyhow = "1.0.97"
clap = { version = "4.5.32", features = ["derive"] }
colored = "3.0.0"
console = { version = "0.15.11", features = ["windows-console-colors"] }
csv = "1.3.1"
indicatif = { version = "0.17.11", features = ["rayon"] }
rand = { version = "0.9.0", features = ["small_rng"] }
rand_chacha = "0.9.0"
rayon = "1.10.0"
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.12"
textplots = "0.8.7"
[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