From 64633f61f7b9e03be9437b5f4896bbe122f7a7a2 Mon Sep 17 00:00:00 2001 From: LukBukkit Date: Thu, 24 Apr 2025 16:20:32 +0000 Subject: [Rust] Implement custom data renderer API Also adds an example plugin and misc rust fixes / documentation. This is a continuation of https://github.com/Vector35/binaryninja-api/pull/6721 Co-authored-by: rbran --- rust/plugin_examples/data_renderer/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 rust/plugin_examples/data_renderer/Cargo.toml (limited to 'rust/plugin_examples/data_renderer/Cargo.toml') diff --git a/rust/plugin_examples/data_renderer/Cargo.toml b/rust/plugin_examples/data_renderer/Cargo.toml new file mode 100644 index 00000000..7ac32dfd --- /dev/null +++ b/rust/plugin_examples/data_renderer/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "example_data_renderer" +version = "0.1.0" +edition = "2021" + +[lib] +crate-type = ["cdylib"] + +[dependencies] +binaryninjacore-sys = { path = "../../binaryninjacore-sys" } +binaryninja = { path = "../.." } +uuid = "1.18.1" +log = "0.4.27" -- cgit v1.3.1