From a893981c35f707528aa486e81050174dcda699af Mon Sep 17 00:00:00 2001 From: E <79379754+oech3@users.noreply.github.com> Date: Wed, 29 Oct 2025 23:13:16 +0900 Subject: [PATCH] Cargo.toml sync 2 profiles with other uutils --- Cargo.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6dd93f1..2c1b4d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,10 @@ assert_cmd = "2.0.14" predicates = "3.1.0" tempfile = "3.10.1" -# The profile that 'cargo dist' will build with -[profile.dist] -inherits = "release" +[profile.release] lto = "thin" +codegen-units = 1 + +[profile.release-fast] +inherits = "release" +panic = "abort"