diff options
| author | Fabian Freyer <fabian.freyer@physik.tu-berlin.de> | 2022-01-28 01:36:26 +0100 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2022-02-14 18:45:11 -0500 |
| commit | 6cd49edb317112acc73f7caeb285f4134a472d72 (patch) | |
| tree | 3fc1af20b46dcb33c1ba5490193a0226e112e839 /rust/examples/decompile/Cargo.toml | |
| parent | 181ad567199e5685578ecf7ad400257098c2e175 (diff) | |
rust: add linearview and related APIs
This should include everything required to retrieve linear disassembly
for a function.
* add `highest_address` method to `Function`
* add `DisassemblySettings`
* add text getter for `InstructionTextToken`
* add `LinearViewObject`, `LinearViewCursor`
* add decompilation example
Diffstat (limited to 'rust/examples/decompile/Cargo.toml')
| -rw-r--r-- | rust/examples/decompile/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rust/examples/decompile/Cargo.toml b/rust/examples/decompile/Cargo.toml new file mode 100644 index 00000000..2a6ac3b1 --- /dev/null +++ b/rust/examples/decompile/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "decompile" +version = "0.1.0" +authors = ["Fabian Freyer <mail@fabianfreyer.de>"] +edition = "2018" + +[dependencies] +binaryninja = {path="../../"} +clap = { version = "3.0", features = ["derive"] } + |
