From 6325884782a47e0c89154cf7ce0952368e25ea2a Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Tue, 18 Apr 2023 12:38:09 -0400 Subject: DWARF Import DebugInfo Plugin Resolves #3206 --- rust/examples/dwarf/dwarf_import/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 rust/examples/dwarf/dwarf_import/Cargo.toml (limited to 'rust/examples/dwarf/dwarf_import/Cargo.toml') diff --git a/rust/examples/dwarf/dwarf_import/Cargo.toml b/rust/examples/dwarf/dwarf_import/Cargo.toml new file mode 100644 index 00000000..322a4dd6 --- /dev/null +++ b/rust/examples/dwarf/dwarf_import/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "dwarf_import" +version = "0.1.0" +authors = ["KyleMiles "] +edition = "2021" + +[lib] +crate-type = ["cdylib"] + +[dependencies] +dwarfreader = { path = "../shared/" } +binaryninja = { path = "../../../" } +gimli = "0.26.1" +log = "0.4.17" -- cgit v1.3.1