diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-06-17 15:05:35 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-06-21 10:38:39 -0400 |
| commit | 38e719b90b89aa45ebeda1c41dc9a9edd42cdc90 (patch) | |
| tree | f1792ff8153b18da5a3e8bfeb6c98fcce9af7994 /rust/Cargo.lock | |
| parent | aa9c28e91b5c2ef6ab0e2aff7e44f8a16de998f7 (diff) | |
Demangle function names recovered from DWARF
Diffstat (limited to 'rust/Cargo.lock')
| -rw-r--r-- | rust/Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 7e03d311..8e18b38a 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -234,6 +234,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] +name = "cpp_demangle" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e8227005286ec39567949b33df9896bcadfa6051bccca2488129f108ca23119" +dependencies = [ + "cfg-if", +] + +[[package]] name = "crc32fast" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -319,10 +328,12 @@ name = "dwarf_import" version = "0.1.0" dependencies = [ "binaryninja", + "cpp_demangle", "dwarfreader", "gimli", "iset", "log", + "regex", ] [[package]] |
