From 8149774201203326096099394434871992996628 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 23 Sep 2024 17:15:17 -0400 Subject: Demangler plugin API Closes #467 --- rust/examples/test_demangler/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 rust/examples/test_demangler/Cargo.toml (limited to 'rust/examples/test_demangler/Cargo.toml') diff --git a/rust/examples/test_demangler/Cargo.toml b/rust/examples/test_demangler/Cargo.toml new file mode 100644 index 00000000..eb4daa34 --- /dev/null +++ b/rust/examples/test_demangler/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "test_demangler" +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="../../"} +log = "0.4.21" + +# Or directly at the git repo: +# [dependencies] +# binaryninja = {git = "https://github.com/Vector35/binaryninja-api.git", branch = "dev"} -- cgit v1.3.1