diff options
| author | Rubens Brandao <git@rubens.io> | 2024-08-06 11:01:23 -0300 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-08-27 17:19:25 -0400 |
| commit | 7e1027d904e66b0cadb277883cdfa7b13dcb209f (patch) | |
| tree | 4451fe8134e7518d43b1e04c1446f56d3bb2091e /view/bintxt/Cargo.toml | |
| parent | feca74615ab3e10e7e256630946d830d07414d08 (diff) | |
Implement IHEX, SREC and TI-TXT views
All bundled under the arch_bintxt/arch_bintext view plugin
Diffstat (limited to 'view/bintxt/Cargo.toml')
| -rw-r--r-- | view/bintxt/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
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 <git@rubens.io>"] +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 |
