From 254309ffa060ed4d80680adc895fae84cc9291a7 Mon Sep 17 00:00:00 2001 From: Kristof Mattei <864376+Kristof-Mattei@users.noreply.github.com> Date: Thu, 30 May 2024 18:09:46 -0700 Subject: [PATCH] Bump backtrace-rs 0.3.59 is the first version of backtrace-rs that doesn't use `gimli-symbolize`: https://github.com/rust-lang/backtrace-rs/commit/5fc4f79674206c2041b9ffeec6e3891c73510147 While the feature is still there, it is unused and later on removed in https://github.com/rust-lang/backtrace-rs/commit/4cbe6b69eaccf23297b51f9584dd8a7d5e12ea95. Original [PR #615](https://github.com/rust-lang/backtrace-rs/pull/615) Closes https://github.com/eyre-rs/eyre/issues/174 --- color-eyre/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/color-eyre/Cargo.toml b/color-eyre/Cargo.toml index 795f6f6..145fb17 100644 --- a/color-eyre/Cargo.toml +++ b/color-eyre/Cargo.toml @@ -20,7 +20,7 @@ track-caller = [] [dependencies] eyre = "0.6.1" tracing-error = { version = "0.2.0", optional = true } -backtrace = { version = "0.3.48", features = ["gimli-symbolize"] } +backtrace = { version = "0.3.59" } indenter = { workspace = true } owo-colors = { workspace = true } color-spantrace = { version = "0.2", path = "../color-spantrace", optional = true }