diff --git a/CHANGELOG.md b/CHANGELOG.md index ac98b5cc..8af58a48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ - fix(logs): stringify u64 attributes greater than `i64::MAX` (#846) by @lcian +### Dependencies + +- chore(deps): bump `anyhow` and disable its `backtrace` feature (#632) by @LunaBorowska + ## 0.40.0 ### Breaking changes diff --git a/Cargo.lock b/Cargo.lock index 32221058..294a3ab7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -265,9 +265,6 @@ name = "anyhow" version = "1.0.98" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" -dependencies = [ - "backtrace", -] [[package]] name = "as-slice" diff --git a/sentry-anyhow/Cargo.toml b/sentry-anyhow/Cargo.toml index a790a065..9bce7962 100644 --- a/sentry-anyhow/Cargo.toml +++ b/sentry-anyhow/Cargo.toml @@ -14,12 +14,12 @@ rust-version = "1.81" [features] default = ["backtrace"] -backtrace = ["anyhow/backtrace"] +backtrace = [] [dependencies] sentry-backtrace = { version = "0.40.0", path = "../sentry-backtrace" } sentry-core = { version = "0.40.0", path = "../sentry-core" } -anyhow = "1.0.39" +anyhow = "1.0.77" [dev-dependencies] sentry = { path = "../sentry", default-features = false, features = ["test"] }