-
Notifications
You must be signed in to change notification settings - Fork 353
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
Remove backtraces feature #1967
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good stuff. Now this delegates everything to Backtrace::capture()
and the Box<Backtrace>
is always set. It would be nice to have an example that shows the flexibility. Why did we need that again? Just no_std or the wasm32 target as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thanks. Then just CHANGELOG and MIGRATING left here
closes #1760
We cannot use the
#[from]
annotation anymore, so I added an internal macro for that (currently we only use it for one variant).