-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.2 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
[package]
name = "lemon-mbl"
description = "LeMon - Monster Battle Library is a rust crate which contains game logic for simulated monster battles. The goals are to be easily extendable with new monsters, moves, abilities, etc. and to explore the structure of battle systems you would find in Pokemon or similar creature collectors."
version = "0.1.9"
edition = "2021"
license = "MIT"
repository = "https://github.com/Zitronenjoghurt/lemon-mbl"
exclude = [
".assets/*",
".github/*",
"data/config.yml",
"data/schemas/*",
"data/stats/*",
"data/translations/*",
"bin/*",
"Makefile"
]
[features]
# For development, it enables the following features:
# - Cloning the full GameData struct
# - Ability to temporarily override the used GameData
# - Dumping the data in GameData back into its initial file structure
dev = []
[[bin]]
name = "generate-data"
path = "./bin/generate_data.rs"
[[bin]]
name = "test-generated-data"
path = "./bin/test_generated_data.rs"
[dependencies]
bincode = "1.3.3"
flate2 = "1.0.35"
image = "0.25.5"
once_cell = "1.20.2"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
thiserror = "2.0.7"
regex = "1.11.1"
rand = "0.8.5"