agb/book/games/pong/Cargo.toml

20 lines
367 B
TOML
Raw Normal View History

2022-01-01 22:37:39 +00:00
[package]
2022-01-01 22:38:56 +00:00
name = "pong"
2022-01-01 22:37:39 +00:00
version = "0.1.0"
authors = ["Gwilym Kuiper <gw@ilym.me>"]
2022-01-01 22:37:39 +00:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-08-02 23:52:43 +01:00
agb = { version = "0.11.1", path = "../../../agb" }
2022-01-01 22:37:39 +00:00
2022-08-02 22:47:37 +01:00
[profile.dev]
opt-level = 2
debug = true
2022-01-01 22:37:39 +00:00
[profile.release]
panic = "abort"
2022-08-02 22:47:37 +01:00
lto = true
debug = true