-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split most of native symbolication into its own crate (#1324)
- Loading branch information
Showing
89 changed files
with
1,565 additions
and
1,485 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[package] | ||
name = "symbolicator-native" | ||
publish = false | ||
version = "23.10.0" | ||
authors = ["Sentry <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[dependencies] | ||
anyhow = "1.0.57" | ||
apple-crash-report-parser = "0.5.1" | ||
async-trait = "0.1.53" | ||
chrono = { version = "0.4.19", features = ["serde"] } | ||
futures = "0.3.12" | ||
lazy_static = "1.4.0" | ||
minidump = "0.18.0" | ||
minidump-processor = "0.18.0" | ||
minidump-unwind = "0.18.0" | ||
moka = { version = "0.12.1", features = ["future", "sync"] } | ||
regex = "1.5.5" | ||
sentry = { version = "0.31.7", features = ["tracing"] } | ||
serde = { version = "1.0.137", features = ["derive", "rc"] } | ||
symbolic = { version = "12.4.0", features = ["cfi", "common-serde", "debuginfo", "demangle", "symcache", "il2cpp", "ppdb"] } | ||
symbolicator-service = { path = "../symbolicator-service" } | ||
symbolicator-sources = { path = "../symbolicator-sources" } | ||
tempfile = "3.2.0" | ||
thiserror = "1.0.31" | ||
tracing = "0.1.34" | ||
url = { version = "2.2.0", features = ["serde"] } | ||
|
||
[dev-dependencies] | ||
insta = { version = "1.18.0", features = ["redactions", "yaml"] } | ||
serde_json = "1.0.81" | ||
symbolicator-test = { path = "../symbolicator-test" } | ||
test-assembler = "0.1.5" | ||
tokio = { version = "1.24.2", features = ["rt", "macros", "fs"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
...bolicator-service/src/services/derived.rs → ...symbolicator-native/src/caches/derived.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pub mod bitcode; | ||
pub mod cficaches; | ||
pub mod derived; | ||
pub mod il2cpp; | ||
pub mod ppdb_caches; | ||
pub mod symcaches; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.