From 38f9d7aa4ccb9ebb5bae7dea71167e85318d8b0b Mon Sep 17 00:00:00 2001 From: Michael Zhu Date: Wed, 28 Feb 2024 11:55:09 -0500 Subject: [PATCH] build-fast/release -> release/extra-fast profiles --- Cargo.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f2c7416fc..aec84c4c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,12 +33,13 @@ members = [ [profile.release] debug = 1 codegen-units = 1 -lto = "fat" +lto = "off" +incremental = true -[profile.build-fast] +[profile.extra-fast] inherits = "release" -incremental = true -lto = "off" +lto = "fat" +incremental = false [patch.crates-io] ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }