summaryrefslogtreecommitdiff
path: root/rust/examples/hlil_lifter/Cargo.toml
diff options
context:
space:
mode:
authorRubens Brandao <git@rubens.io>2023-11-22 18:57:28 -0300
committerKyleMiles <krm504@nyu.edu>2024-02-02 13:32:45 -0500
commitf682ca69b356755fe6c06bcdd8f4fab73f7d2c78 (patch)
tree3cfc324cfe8043ccc8db1161f1f90c448d097c8a /rust/examples/hlil_lifter/Cargo.toml
parente1a6bdcd576f7caeaa6f97ff1e337a259057b333 (diff)
Rust API : Add HLIL Bindings
Diffstat (limited to 'rust/examples/hlil_lifter/Cargo.toml')
-rw-r--r--rust/examples/hlil_lifter/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/rust/examples/hlil_lifter/Cargo.toml b/rust/examples/hlil_lifter/Cargo.toml
new file mode 100644
index 00000000..c6c8794a
--- /dev/null
+++ b/rust/examples/hlil_lifter/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "hlil_lifter"
+version = "0.1.0"
+edition = "2021"
+
+# Uncomment this if you're writing a plugin (plugins are shared objects loaded by the core):
+# [lib]
+# crate-type = ["cdylib"]
+
+# You can point at the BinaryNinja dependency in one of two ways, via path:
+[dependencies]
+binaryninja = {path="../../"}
+
+# Or directly at the git repo:
+# [dependencies]
+# binaryninja = {git = "https://github.com/Vector35/binaryninja-api.git", branch = "dev"}