Skip to content

Commit

Permalink
Update sentry to 0.32.2 (again)
Browse files Browse the repository at this point in the history
Avoid enabling the default feature `debug-images` which was causing the
deadlock on centos 7.

`cargo tree -e features -i sentry` is useful for verifying the list of
enabled features.

More details can be found in issue #990.

Signed-off-by: J Robert Ray <jrray@imageworks.com>
  • Loading branch information
J Robert Ray committed Mar 2, 2024
1 parent 5b3405f commit 1ddb9b9
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 34 deletions.
86 changes: 56 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 9 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,16 @@ regex = "1.6"
relative-path = "1.3"
ring = "0.17.7"
rstest = "0.18.2"
sentry = { version = "0.27.0" }
#sentry = { version = "0.32.2" }
sentry = { version = "0.32.2", default-features = false, features = [
# all the default features except `debug-images` which causes a deadlock on
# centos 7: https://github.com/getsentry/sentry-rust/issues/358
"backtrace",
"contexts",
"panic",
"transport",
] }
sentry-miette = { version = "0.1.0", path = "crates/sentry-miette" }
sentry-tracing = { version = "0.27.0" }
#sentry-tracing = { version = "0.32.2" }
sentry-tracing = { version = "0.32.2" }
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9.25"
Expand Down

0 comments on commit 1ddb9b9

Please sign in to comment.