agb/book/games/pong/Cargo.toml

19 lines
286 B
TOML
Raw Normal View History

2022-01-02 09:37:39 +11:00
[package]
2022-01-02 09:38:56 +11:00
name = "pong"
2022-01-02 09:37:39 +11:00
version = "0.1.0"
authors = ["Gwilym Kuiper <gw@ilym.me>"]
2023-02-08 07:32:35 +11:00
edition = "2021"
2022-01-02 09:37:39 +11:00
[dependencies]
2023-04-26 06:51:29 +10:00
agb = { version = "0.15.0", path = "../../../agb" }
2022-01-02 09:37:39 +11:00
2022-08-03 07:47:37 +10:00
[profile.dev]
opt-level = 3
2022-08-03 07:47:37 +10:00
debug = true
codegen-units = 1
2022-08-03 07:47:37 +10:00
2022-01-02 09:37:39 +11:00
[profile.release]
opt-level = 3
lto = "fat"
2022-08-03 07:47:37 +10:00
debug = true