-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 841 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
[package]
name = "retroboard"
version = "0.2.11-dev"
publish = false # Comment this line out before publishing
authors = ["Kraktus"]
description = "A chess retrograde move generator, suitable for endgame tablebase generation"
repository = "https://github.com/kraktus/rs-retroboard-chess"
license = "AGPL-3.0+"
edition = "2021"
rust-version = "1.63" # MSRV from shakmaty
readme = "README.md"
keywords = ["chess", "endgame", "tablebase", "retrograde"]
categories = ["games", "game-engines"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
shakmaty = "0.24"
regex = "1.5"
lazy_static = "1.4"
arrayvec = "0.7"
[dev-dependencies]
indoc = "1.0.2"
paste = "1.0.6"
criterion = "0.4"
[[bench]]
name = "bench"
harness = false