Skip to content

Commit

Permalink
fix: upgrade sentry w/ a fix for the blocking curl Transport (#1621)
Browse files Browse the repository at this point in the history
includes the fix: getsentry/sentry-rust#701

Closes SYNC-4460
  • Loading branch information
pjenvey authored Oct 29, 2024
1 parent c8ec7ca commit b8641a6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 16 deletions.
21 changes: 7 additions & 14 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,15 @@ regex = "1.4"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
] }
sentry = { version = "0.34", default-features = false, features = [
# rev 1b65b5c includes https://github.com/getsentry/sentry-rust/pull/701
# TODO: bump to 0.35 as soon as it's available
sentry = { version = "0.34", git = "https://github.com/getsentry/sentry-rust", rev = "1b65b5c", default-features = false, features = [
"curl",
"backtrace",
"contexts",
"debug-images",
] }
sentry-backtrace = "0.34"
sentry-backtrace = { version = "0.34", git = "https://github.com/getsentry/sentry-rust", rev = "1b65b5c" }
serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
Expand Down

0 comments on commit b8641a6

Please sign in to comment.