-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (59 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
65 lines (59 loc) · 1.3 KB
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
[package]
name = "albw-randomizer"
version = "0.4.0"
authors = [
"Kevin Marsolais <kevin@kevinmarsolais.co>",
"Rick Fay <rickwithanh@gmail.com>",
]
edition = "2021"
license = "GPL-2.0-or-later"
[dependencies]
cli = { workspace = true }
game = { workspace = true }
log = { workspace = true }
macros = { workspace = true }
modinfo = { workspace = true }
rand = { workspace = true }
randomizer = { path = "./randomizer" }
rom = { workspace = true }
simplelog = "0.12.2"
structopt = "0.3.26"
time = "0.3.36"
[build-dependencies]
winres = "0.1"
[[bin]]
name = "albw-plandomizer"
path = "./src/bin/plando.rs"
[workspace]
members = [
"bytey",
"bytey-macro",
"cli",
"game",
"jack",
"macros",
"modinfo",
"randomizer",
"rom",
]
[workspace.dependencies]
byteorder = "1.4.3"
bytey = { path = "./bytey" }
cli = { path = "./cli" }
game = { path = "./game" }
jack = { path = "./jack" }
log = "0.4.19"
macros = { path = "./macros" }
modinfo = { path = "./modinfo" }
path-absolutize = "3.1.0"
rand = { version = "0.8.5", features = ["std_rng"] }
rom = { path = "./rom" }
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
strum = { version = "0.25.0", features = ["derive"] }
yaz0 = "0.3.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = true