-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 786 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 = "uciengine"
version = "0.1.33"
authors = ["hyperchessbot <hyperchessbot@gmail.com>"]
edition = "2018"
keywords = ["uci", "chess", "engine", "wrapper"]
description = "Use chess engine wrapper supporting uci command necessary for playing a game. Analysis is not supported."
license = "MIT"
repository = "https://github.com/hyperchessbot/uciengine"
homepage = "https://github.com/hyperchessbot/uciengine#uciengine"
documentation = "https://docs.rs/uciengine/0.1.33"
readme = "ReadMe.md"
[dev-dependencies]
env_logger = "0.8.2"
[dependencies]
log = "0.4.11"
thiserror = "1.0.23"
serde_json = "1.0.61"
envor = "0.1.5"
[dependencies.serde]
version = "1.0.118"
features = [ "derive" ]
[dependencies.tokio]
version = "1.0.1"
features = [ "full" ]
[lib]
path = "src/lib.rs"