-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 899 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 899 Bytes
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
[package]
name = "pgnparse"
version = "0.1.15"
authors = ["hyperchessbot <hyperchessbot@gmail.com>"]
edition = "2018"
keywords = ["pgn", "parse", "rust", "json"]
description = "Parse PGN to Rust struct ( headers as hash map, main line moves as san, uci, fen, epd records ) or to JSON. All lichess variants are supported. Custom starting position using FEN header is supported."
license = "MIT"
repository = "https://github.com/hyperchessbot/pgnparse"
homepage = "https://github.com/hyperchessbot/pgnparse#pgnparse"
documentation = "https://docs.rs/pgnparse/0.1.15"
readme = "ReadMe.md"
default-run = "usage"
[dependencies]
shakmaty = "0.17.1"
pgn-reader = "0.16.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
rand = "0.8.0"
log = "0.4.11"
env_logger = "0.8.2"
[[bin]]
name = "usage"
path = "src/usage.rs"
[[bin]]
name = "advanced"
path = "src/advanced.rs"
[lib]