2022-12-02 04:16:53 +11:00
|
|
|
[package]
|
|
|
|
name = "combo"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-12 06:28:22 +10:00
|
|
|
agb = { version = "0.14.0", path = "../../agb" }
|
2022-12-02 04:16:53 +11:00
|
|
|
the-purple-night = { path = "../the-purple-night" }
|
|
|
|
the-hat-chooses-the-wizard = { path = "../the-hat-chooses-the-wizard" }
|
|
|
|
hyperspace-roll = { path = "../hyperspace-roll" }
|
|
|
|
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 2
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
lto = true
|
|
|
|
debug = true
|
2023-04-06 02:06:56 +10:00
|
|
|
codegen-units = 1
|