From 57e36223f7b35b2b3ff023b7ba304bac976cac4d Mon Sep 17 00:00:00 2001 From: Bjerg Date: Wed, 8 Mar 2023 14:12:09 +0100 Subject: [PATCH] feat: add `debug-fast` profile (#1670) --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c94e7294bf..ad7253f862 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,11 @@ members = [ exclude = ["crate-template"] default-members = ["bin/reth"] +# Like release, but with full debug symbols. Useful for e.g. `perf`. +[profile.debug-fast] +inherits = "release" +debug = true + [patch.crates-io] revm = { git = "https://github.com/bluealloy/revm" } revm-primitives = { git = "https://github.com/bluealloy/revm" }