Skip to content
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: Add ppdb feature to symbolic #687

Merged
merged 2 commits into from
Sep 22, 2022
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
**Features**:

- The new version 8 of the symcache format saves strings slightly more compactly. Reading of version 7 is still supported. ([#670](https://github.com/getsentry/symbolic/pull/670))
- `symbolic-ppdb` incorporated into `symbolic` (behind the `ppdb` feature flag) ([#687](https://github.com/getsentry/symbolic/pull/687))

**Internal**:

Expand Down
2 changes: 2 additions & 0 deletions symbolic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ debuginfo = ["symbolic-debuginfo"]
debuginfo-serde = ["debuginfo", "common-serde"]
demangle = ["symbolic-demangle"]
il2cpp = ["symbolic-il2cpp", "symbolic-symcache/il2cpp"]
ppdb = ["symbolic-ppdb"]
symcache = ["symbolic-symcache", "debuginfo"]
unreal = ["symbolic-unreal"]
unreal-serde = ["unreal", "common-serde", "symbolic-unreal/serde"]
Expand All @@ -37,6 +38,7 @@ symbolic-common = { version = "9.1.4", path = "../symbolic-common" }
symbolic-debuginfo = { version = "9.1.4", path = "../symbolic-debuginfo", optional = true }
symbolic-demangle = { version = "9.1.4", path = "../symbolic-demangle", optional = true }
symbolic-il2cpp = { version = "9.1.4", path = "../symbolic-il2cpp", optional = true }
symbolic-ppdb = { version = "9.1.4", path = "../symbolic-ppdb", optional = true }
symbolic-symcache = { version = "9.1.4", path = "../symbolic-symcache", optional = true }
symbolic-unreal = { version = "9.1.4", path = "../symbolic-unreal", optional = true }

Expand Down
3 changes: 3 additions & 0 deletions symbolic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ pub use symbolic_demangle as demangle;
#[doc(inline, hidden)]
#[cfg(feature = "il2cpp")]
pub use symbolic_il2cpp as il2cpp;
#[doc(inline, hidden)]
#[cfg(feature = "ppdb")]
pub use symbolic_ppdb as ppdb;
#[doc(inline)]
#[cfg(feature = "symcache")]
pub use symbolic_symcache as symcache;
Expand Down