-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (40 loc) · 1014 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
43
44
45
46
[package]
name = "ajedrez"
description = "A naive implementation of a chess engine library"
readme.workspace = true
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
categories.workspace = true
keywords.workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[workspace]
members = [
"gui"
]
[workspace.package]
repository = "https://github.com/misaelnieto/ajedrez/"
readme = "README.md"
version = "0.0.1"
edition = "2021"
authors = ["Noe Nieto <nnieto@noenieto.com>"]
license = "MIT OR Apache-2.0"
keywords = ["chess", "library", "game"]
categories = ["game-engines"]
# Not a public project yet
publish = false
[workspace.dependencies]
ajedrez = { version = "0.0.1", path = "." }
ajedrez_gui = { version = "0.0.1", path = "gui" }
[badges]
maintenance = { status = "experimental" }
[dependencies]
pest = "2.7.6"
regex = "1.10.2"
pest_derive = "2.7.6"
log = "0.4.20"
colored = "2.1.0"