From 75e3a50129ca8138733eb4706ea13cc02b5086e2 Mon Sep 17 00:00:00 2001 From: John Detter <4099508+jdetter@users.noreply.github.com> Date: Sat, 1 Jul 2023 15:10:22 -0500 Subject: [PATCH] Cargo profile for building CLI more quickly (#50) * Cargo profile for building more quickly * opt level is redundant --------- Co-authored-by: Boppy --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 15f950300de..b825066fa18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,6 +33,10 @@ incremental = false codegen-units = 16 rpath = false +[profile.release-fast] +inherits = "release" +lto = "thin" + [profile.dev] opt-level = 0 debug = true