summaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2024-04-22 17:37:18 -0400
committerGlenn Smith <glenn@vector35.com>2024-04-22 17:39:12 -0400
commit8534476934065104161886820729515240153914 (patch)
tree75264a38678c8d74798b9a72db1f460371f17145 /rust/Cargo.toml
parent72cb4b08ac8f7c9261867cd6c0b18c054d73b96e (diff)
Public release of PDB parser plugin
Diffstat (limited to 'rust/Cargo.toml')
-rw-r--r--rust/Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 8e174e68..796abc16 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -14,6 +14,10 @@ libc = "0.2"
rayon = { version = "1.8", optional = true }
binaryninjacore-sys = { path = "binaryninjacore-sys" }
+[patch.crates-io]
+# Patched pdb crate to implement some extra structures
+pdb = { path = "./examples/pdb-ng/pdb-0.8.0-patched" }
+
[workspace]
members = [
"examples/basic_script",
@@ -28,6 +32,7 @@ members = [
"examples/mlil_lifter",
"examples/hlil_visitor",
"examples/hlil_lifter",
+ "examples/pdb-ng",
"examples/template"
]