Skip to content

Commit 1ddb9b9

Browse files
author
J Robert Ray
committed
Update sentry to 0.32.2 (again)
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 <[email protected]>
1 parent 5b3405f commit 1ddb9b9

File tree

2 files changed

+65
-34
lines changed

2 files changed

+65
-34
lines changed

Cargo.lock

+56-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+9-4
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,16 @@ regex = "1.6"
7070
relative-path = "1.3"
7171
ring = "0.17.7"
7272
rstest = "0.18.2"
73-
sentry = { version = "0.27.0" }
74-
#sentry = { version = "0.32.2" }
73+
sentry = { version = "0.32.2", default-features = false, features = [
74+
# all the default features except `debug-images` which causes a deadlock on
75+
# centos 7: https://github.com/getsentry/sentry-rust/issues/358
76+
"backtrace",
77+
"contexts",
78+
"panic",
79+
"transport",
80+
] }
7581
sentry-miette = { version = "0.1.0", path = "crates/sentry-miette" }
76-
sentry-tracing = { version = "0.27.0" }
77-
#sentry-tracing = { version = "0.32.2" }
82+
sentry-tracing = { version = "0.32.2" }
7883
serde = "1.0"
7984
serde_json = "1.0"
8085
serde_yaml = "0.9.25"

0 commit comments

Comments
 (0)