agb/book/games/pong/Cargo.toml

18 lines
268 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 Inzani <gw@ilym.me>"]
2023-02-08 07:32:35 +11:00
edition = "2021"
2022-01-02 09:37:39 +11:00
[dependencies]
2023-11-01 07:35:14 +11:00
agb = { version = "0.18.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
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