From 7e1027d904e66b0cadb277883cdfa7b13dcb209f Mon Sep 17 00:00:00 2001 From: Rubens Brandao Date: Tue, 6 Aug 2024 11:01:23 -0300 Subject: Implement IHEX, SREC and TI-TXT views All bundled under the arch_bintxt/arch_bintext view plugin --- view/bintxt/Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 view/bintxt/Cargo.toml (limited to 'view/bintxt/Cargo.toml') diff --git a/view/bintxt/Cargo.toml b/view/bintxt/Cargo.toml new file mode 100644 index 00000000..0ec7a9c1 --- /dev/null +++ b/view/bintxt/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "view_bintxt" +version = "0.1.0" +authors = ["Rubens Brandao "] +edition = "2021" + +[dependencies] +binaryninja = { path = "../../rust" } +ihex = "3.0.0" +log = "*" +srec = "0.2.0" + +[lib] +crate-type = ["cdylib"] + +[profile.release] +panic = "abort" +lto = true +debug = 1 -- cgit v1.3.1