agb/examples/hyperspace-roll/Cargo.toml
Corwin d638134d37
remove codegen-units
these were added as a workaround for rust bugs
2023-05-23 20:10:24 +01:00

19 lines
268 B
TOML

[package]
name = "hyperspace-roll"
version = "0.1.0"
authors = [""]
edition = "2021"
[dependencies]
agb = { version = "0.15.0", path = "../../agb" }
[profile.dev]
opt-level = 3
debug = true
codegen-units = 1
[profile.release]
opt-level = 3
lto = "fat"
debug = true