From fcdcc86569c9ae1d64e32a7a4f0e817a51445dbb Mon Sep 17 00:00:00 2001 From: Hamish Ivey-Law <426294+unzvfu@users.noreply.github.com> Date: Tue, 18 Jan 2022 11:41:08 +1100 Subject: [PATCH] Move profile defns to root workspace toml. (#437) --- Cargo.toml | 8 ++++++++ plonky2/Cargo.toml | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c36e3023..2bd67bb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,10 @@ [workspace] members = ["field", "insertion", "plonky2", "util", "waksman"] + +[profile.release] +opt-level = 3 +#lto = "fat" +#codegen-units = 1 + +[profile.bench] +opt-level = 3 diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index bce9f400..466d3df6 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -55,11 +55,3 @@ harness = false [[bench]] name = "transpose" harness = false - -[profile.release] -opt-level = 3 -#lto = "fat" -#codegen-units = 1 - -[profile.bench] -opt-level = 3