From 0a226a4d7cb9c0308ebb3c0c209df7ae395ce5d5 Mon Sep 17 00:00:00 2001 From: sapir Date: Sun, 12 Apr 2020 22:19:31 +0300 Subject: [PATCH] Move profile definition to workspace root Former-commit-id: 2ad50e35e9250c44ed538540d245ae23f0a7f2ff --- Cargo.toml | 6 +++++- rustboyadvance-core/Cargo.toml | 4 ---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c07a667..9d961a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,4 +4,8 @@ members = [ "platform/rustboyadvance-sdl2", "platform/rustboyadvance-minifb", "bindings/rustboyadvance-jni", -] \ No newline at end of file +] + +[profile.dev] +opt-level = 0 +debug = true diff --git a/rustboyadvance-core/Cargo.toml b/rustboyadvance-core/Cargo.toml index b8a76a2..19dcacf 100644 --- a/rustboyadvance-core/Cargo.toml +++ b/rustboyadvance-core/Cargo.toml @@ -44,7 +44,3 @@ gdb = ["gdbstub"] # Uses lookup tables when executing instructions instead of `match` statements. # Faster, but consumes more memory. arm7tdmi_dispatch_table = [] - -[profile.dev] -opt-level = 0 -debug = true