getsentry/sentry-cli

Remove `panic = abort` in `Cargo.toml`

szokeasaurusrex opened this issue · 0 comments

Setting panic to abort disables any panic handlers in Rust. While having this does likely reduce binary size, the downside is that panics immediately crash Sentry CLI, and they cannot be handled.

If we add Sentry to the CLI (#1821), Sentry would not be able to capture panics due to this option.