From d43ec790649842ad49b4daf935af32aa4c5295ee Mon Sep 17 00:00:00 2001 From: Corwin Date: Tue, 2 Aug 2022 22:47:37 +0100 Subject: [PATCH] increase optimisation --- book/games/pong/Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/book/games/pong/Cargo.toml b/book/games/pong/Cargo.toml index 4a012d50..ee389321 100644 --- a/book/games/pong/Cargo.toml +++ b/book/games/pong/Cargo.toml @@ -9,6 +9,11 @@ edition = "2018" [dependencies] agb = { version = "0.10.0", path = "../../../agb" } +[profile.dev] +opt-level = 2 +debug = true + [profile.release] panic = "abort" -lto = true \ No newline at end of file +lto = true +debug = true