-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
57 lines (52 loc) · 1.53 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
[package]
name = "genie"
version = "0.5.0"
description = "Libraries for reading/writing Age of Empires II data files"
documentation = "https://docs.rs/genie/"
homepage = "https://github.com/SiegeEngineers/genie-rs"
readme = "./README.md"
[workspace]
members = [
"crates/genie-cpx",
"crates/genie-dat",
"crates/genie-drs",
"crates/genie-hki",
"crates/genie-lang",
"crates/genie-rec",
"crates/genie-scx",
"crates/genie-support",
"crates/jascpal",
]
[workspace.package]
authors = ["Renée Kooi <[email protected]>"]
edition = "2021"
rust-version = "1.64.0"
license = "GPL-3.0"
repository = "https://github.com/SiegeEngineers/genie-rs"
[workspace.dependencies]
structopt = "0.3.26"
anyhow = "1.0.65"
simplelog = "0.12.0"
thiserror = "1.0.36"
byteorder = "1.4.3"
flate2 = { version = "1.0.24", features = [
"rust_backend",
], default-features = false }
encoding_rs = "0.8.31"
encoding_rs_io = "0.1.7"
rgb = "0.8.34"
num_enum = "0.5.7"
arrayvec = "0.7.2"
[dependencies]
genie-cpx = { version = "0.5.0", path = "crates/genie-cpx" }
genie-dat = { version = "0.1.0", path = "crates/genie-dat" }
genie-drs = { version = "0.2.1", path = "crates/genie-drs" }
genie-hki = { version = "0.2.1", path = "crates/genie-hki" }
genie-lang = { version = "0.2.1", path = "crates/genie-lang" }
genie-rec = { version = "0.1.1", path = "crates/genie-rec" }
genie-scx = { version = "4.0.0", path = "crates/genie-scx" }
jascpal = { version = "0.1.1", path = "crates/jascpal" }
[dev-dependencies]
structopt.workspace = true
anyhow.workspace = true
simplelog.workspace = true