From 8c9cdd38c3302280087c9e6d94f7f57083885edd Mon Sep 17 00:00:00 2001 From: Rubens Brandao Date: Sat, 18 Nov 2023 15:58:33 -0300 Subject: add mlil to rust --- rust/examples/mlil_lifter/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 rust/examples/mlil_lifter/Cargo.toml (limited to 'rust/examples/mlil_lifter/Cargo.toml') diff --git a/rust/examples/mlil_lifter/Cargo.toml b/rust/examples/mlil_lifter/Cargo.toml new file mode 100644 index 00000000..4ea158fc --- /dev/null +++ b/rust/examples/mlil_lifter/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "mlil_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"} -- cgit v1.3.1