From 83d041e4cfd64179f8bbc60752ded78c6f037b85 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Wed, 10 May 2023 10:47:48 -0400 Subject: Move DWARF Export in to DWARF folder in Rust API examples folder --- rust/examples/dwarf/dwarf_export/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 rust/examples/dwarf/dwarf_export/Cargo.toml (limited to 'rust/examples/dwarf/dwarf_export/Cargo.toml') diff --git a/rust/examples/dwarf/dwarf_export/Cargo.toml b/rust/examples/dwarf/dwarf_export/Cargo.toml new file mode 100644 index 00000000..022d3e00 --- /dev/null +++ b/rust/examples/dwarf/dwarf_export/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "dwarf_export" +version = "0.1.0" +edition = "2021" + +[lib] +crate-type = ["cdylib"] + +[dependencies] +binaryninja = {path="../../../"} +gimli = "^0.27" +log = "^0.4" +object = { version = "0.30.3", features = ["write"] } -- cgit v1.3.1