diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-10-16 12:19:57 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-10-16 20:29:43 -0400 |
| commit | b6740d03abd22441e2e79e1d6a13c474e3fcba90 (patch) | |
| tree | b4b317e182f23a0b9f2f633b25c54bed814abb4b /Cargo.lock | |
| parent | e75d64a86a128b9a8cb3cb606e5f9560e90a4758 (diff) | |
Apply relocations when parsing DWARF
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -727,6 +727,7 @@ dependencies = [ "indexmap", "iset", "log", + "object 0.36.7", "regex", ] @@ -747,6 +748,7 @@ dependencies = [ "binaryninja", "binaryninjacore-sys", "gimli", + "object 0.36.7", "thiserror 2.0.12", "zstd", ] @@ -1821,7 +1823,7 @@ dependencies = [ "hashbrown 0.14.5", "indexmap", "memchr", - "ruzstd", + "ruzstd 0.5.0", ] [[package]] @@ -1830,7 +1832,9 @@ version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ + "flate2", "memchr", + "ruzstd 0.7.3", ] [[package]] @@ -2421,6 +2425,15 @@ dependencies = [ ] [[package]] +name = "ruzstd" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fad02996bfc73da3e301efe90b1837be9ed8f4a462b6ed410aa35d00381de89f" +dependencies = [ + "twox-hash", +] + +[[package]] name = "ryu" version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" |
