-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (35 loc) · 852 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
[package]
name = "sfbinpack"
version = "0.3.3"
description = "Library to read Stockfish Binpacks"
edition = "2021"
license = "GPL-3.0"
repository = "https://github.com/Disservin/binpack-rust"
readme = "README.md"
[features]
default = []
# Enables the usage of `_pdep_u64` which will make the reader faster on modern hardware.
# If disabled a fallback procedure is used.
# This should be enabled on all Intel CPUs, which support BMI2.
# CPUs from AMD should only enabled this if the architecture is Zen3+.
bmi2 = []
[dependencies]
thiserror = "2.0.8"
[dev-dependencies]
tempfile = "3"
[lib]
path = "src/lib.rs"
[[bin]]
name = "sfbinpack"
path = "src/main.rs"
[profile.release]
debug = 1
opt-level = 3
strip = "none"
debug-assertions = false
overflow-checks = false
lto = true
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false