Skip to content

Commit

Permalink
implement rust idb_dump
Browse files Browse the repository at this point in the history
  • Loading branch information
rbran committed Aug 26, 2024
1 parent 183a842 commit 694bbc7
Show file tree
Hide file tree
Showing 13 changed files with 3,536 additions and 12 deletions.
65 changes: 53 additions & 12 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ members = [
"examples/dwarf/dwarf_import",
"examples/dwarf/dwarfdump",
"examples/dwarf/shared",
"examples/idb/idb_import",
"examples/idb/shared",
"examples/flowgraph",
"examples/minidump",
"examples/mlil_visitor",
Expand Down
14 changes: 14 additions & 0 deletions rust/examples/idb/idb_import/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "idb_import"
version = "0.1.0"
authors = ["Rubens Brandao <[email protected]>"]
edition = "2021"

[lib]
crate-type = ["cdylib"]

[dependencies]
anyhow = "1.0.86"
binaryninja = { path = "../../../" }
idb-rs = { path = "../shared" }
log = "0.4.20"
Loading

0 comments on commit 694bbc7

Please sign in to comment.