-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- recognize symbols with _Z prefixes and demangle them automatically Dwarf Decoding support - On Linux decode BACKTRACE with DWARF information in binaries
- Loading branch information
1 parent
d6271cb
commit 1fbb212
Showing
3 changed files
with
502 additions
and
36 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mrlog" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Mark Benvenuto <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -9,10 +9,20 @@ edition = "2018" | |
[dependencies] | ||
json = "0.12.4" | ||
regex = "1.3.6" | ||
structopt = "0.3.12" | ||
structopt = "0.3.13" | ||
|
||
anyhow = "1.0.27" | ||
anyhow = "1.0.28" | ||
|
||
colored = "1.9.3" | ||
|
||
crossbeam-channel="0.4.2" | ||
|
||
cpp_demangle = "0.2.14" | ||
|
||
[target.'cfg(target_os = "linux")'.dependencies] | ||
object={ version = "0.17.0", default-features = false, features = ["read", "compression"] } | ||
addr2line="0.11.0" | ||
memmap2 = "0.1.0" | ||
gimli = { version = "0.20", default-features = false, features = ["read"] } | ||
|
||
rental = "0.5.5" |
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.