Skip to content

build(panic): Fix build without other dependencies #883

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

## Features
### Features

- feat(core): add Response context ([#874](https://github.com/getsentry/sentry-rust/pull/874)) by @lcian
- The `Response` context can now be attached to events, to include information about HTTP responses such as headers, cookies and status code.
Expand All @@ -21,6 +21,11 @@
.insert("response".to_owned(), response.into());
```

### Fixes

- build(panic): Fix build without other dependencies ([#883](https://github.com/getsentry/sentry-rust/pull/883)) by @liskin
- The `sentry-panic` crate now builds successfully when used as a standalone dependency.

## 0.42.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion sentry-panic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
rust-version = "1.81"

[dependencies]
sentry-core = { version = "0.42.0", path = "../sentry-core" }
sentry-core = { version = "0.42.0", path = "../sentry-core", features = ["client"] }
sentry-backtrace = { version = "0.42.0", path = "../sentry-backtrace" }

[dev-dependencies]
Expand Down
Loading