From 511e09094c5cb96e348771445f01843e92c1610d Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 15 Aug 2023 17:18:30 +0400 Subject: Disable backtrace in anyhow Too slow even with opt-level 3. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9d168dc4..4699fbec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0-or-later" edition = "2021" [dependencies] -anyhow = { version = "1.0.72", features = ["backtrace"] } +anyhow = { version = "1.0.72" } bitflags = "2.3.3" clap = { version = "4.3.21", features = ["derive"] } keyframe = { version = "1.1.1", default-features = false } -- cgit