-
-
Notifications
You must be signed in to change notification settings - Fork 78
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
feat(demangle): Improve docs for symbolic-demangle #241
Conversation
6575382
to
4087730
Compare
4087730
to
8de57c6
Compare
demangle/Cargo.toml
Outdated
@@ -25,5 +26,11 @@ msvc-demangler = "0.8.0" | |||
rustc-demangle = "0.1.16" | |||
symbolic-common = { version = "7.3.3", path = "../common" } | |||
|
|||
[dev-dependencies] | |||
symbolic = { path = "..", features = ["demangle"] } |
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.
Just a heads up… I know this pattern is super useful, as I have also used it for the rust SDK, but you are not able to properly publish with this: rust-lang/cargo#4242 😭
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.
Alright, let me revert this then. Too bad, it made the examples much nicer.
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.
Yes it definitely does! I’m also not yet sure what I should do about this for the SDK, since I depend on sentry::init
and sentry::test
a lot in the doctests 😭
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.
For the Sentry SDK, doing something similar to futures
would probably be worth it. In symbolic, I guess people can extrapolate how to rewrite the imports until there's a proper solution for this in cargo.
Updates docs of
symbolic-demangle
, as they were out of date and sometimes incomplete. Particularly, this includes:cargo-readme