From 6037c12ad009b36596e33fc8e109df204805590a Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 3 Jun 2024 18:58:25 -0600 Subject: [PATCH] Disable lto to workaround crash See #66 --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bf52f16..3284e02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,5 +8,7 @@ resolver = "2" [profile.release-lto] inherits = "release" -lto = "thin" +# Temporarily disabled to fix notify crash +# See https://github.com/encounter/objdiff/issues/66 +#lto = "thin" strip = "debuginfo"