From 2a2058f78157927ac9975319c9924a5bcd4e40c9 Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Sat, 3 May 2025 23:37:48 -0500 Subject: [PATCH] (build): disable LTO by default --- Cargo.toml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1cf1541..8277743 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,6 @@ name = "rusnapshot" version = "0.4.1" authors = ["edu4rdshl"] -edition = "2018" description = "Simple and handy btrfs snapshoting tool." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,11 +16,3 @@ prettytable-rs = "0.10.0" anyhow = "1.0.98" toml = "0.8.22" hostname = "0.4.1" - - -[profile.release] -lto = true -codegen-units = 1 -panic = 'abort' -incremental = false -opt-level = "s"