-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (51 loc) · 1.31 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "aoe2-probe"
version = "0.3.2"
edition = "2021"
license = "GPL-3.0-or-later"
description = "A rust library for editing aoe2scenario files from AoE2 DE."
homepage = "https://github.com/ptazithos/aoe2-probe"
repository = "https://github.com/ptazithos/aoe2-probe"
readme = "README.md"
keywords = ["gamedev", "AoE2DE", "parser"]
categories = ["game-development", "parsing"]
exclude = ["resources", "examples", ".circleci"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
log = "0.4.21"
miniz_oxide = "0.7.3"
linked-hash-map = { version = "0.5.6", features = ["serde_impl"] }
lazy_static = "1.4.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
serde_repr = "0.1.19"
[dev-dependencies]
env_logger = "0.11.3"
[[example]]
name = "read_write"
path = "examples/read_write.rs"
[[example]]
name = "encode"
path = "examples/encode.rs"
[[example]]
name = "template"
path = "examples/template.rs"
[[example]]
name = "print_info"
path = "examples/print_info.rs"
[[example]]
name = "update_attr"
path = "examples/update_attr.rs"
[[example]]
name = "type_check"
path = "examples/type_check.rs"
[[example]]
name = "structure_check"
path = "examples/structure_check.rs"
[[example]]
name = "serde_json"
path = "examples/serde_json.rs"
[[example]]
name = "triggers"
path = "examples/triggers.rs"