-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
47 lines (40 loc) · 1.08 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
[package]
name = "shakmaty-syzygy"
version = "0.25.2" # remember to update changelog and html_root_url
description = "Probe Syzygy tablebases"
repository = "https://github.com/niklasf/shakmaty-syzygy"
readme = "README.md"
license = "GPL-3.0+"
authors = ["Niklas Fiekas <niklas.fiekas@backscattering.de>"]
categories = ["games"]
keywords = ["chess", "syzygy", "tablebase"]
exclude = ["tables/**/*.*tb*"]
edition = "2021"
rust-version = "1.77"
[[bench]]
name = "benches"
harness = false
[dependencies]
arrayvec = "0.7"
bitflags = "2"
shakmaty = "0.27.2"
byteorder = "1.2"
rustc-hash = "2"
once_cell = "1.12"
tracing = "0.1"
memmap2 = { version = "0.9", optional = true }
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2" # for optional posix_fadvise
[dev-dependencies]
csv = "1"
bencher = "0.1"
clap = { version = "4", features = ["derive", "deprecated"] }
[features]
default = []
mmap = ["memmap2"]
variant = ["shakmaty/variant"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docs_rs"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docs_rs)'] }