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"
|
2022-01-02 09:47:01 +11:00
|
|
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
2023-02-08 07:32:35 +11:00
|
|
|
edition = "2021"
|
2022-01-02 09:37:39 +11:00
|
|
|
|
|
|
|
# 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-01-02 09:37:39 +11:00
|
|
|
|
2022-08-03 07:47:37 +10:00
|
|
|
[profile.dev]
|
|
|
|
opt-level = 2
|
|
|
|
debug = true
|
|
|
|
|
2022-01-02 09:37:39 +11:00
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
2022-08-03 07:47:37 +10:00
|
|
|
lto = true
|
|
|
|
debug = true
|