summaryrefslogtreecommitdiff
path: root/rust/examples/dwarf/dwarf_export/Cargo.toml
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-05-10 10:47:48 -0400
committerKyleMiles <krm504@nyu.edu>2023-07-10 12:58:34 -0400
commit83d041e4cfd64179f8bbc60752ded78c6f037b85 (patch)
tree5b9368f65884feba6e3efd3f3b33d6249a45d01c /rust/examples/dwarf/dwarf_export/Cargo.toml
parent04bc6f11ae0289aae57d63d4cd32f4ef305d1a7a (diff)
Move DWARF Export in to DWARF folder in Rust API examples folder
Diffstat (limited to 'rust/examples/dwarf/dwarf_export/Cargo.toml')
-rw-r--r--rust/examples/dwarf/dwarf_export/Cargo.toml13
1 files changed, 13 insertions, 0 deletions
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"] }