summaryrefslogtreecommitdiff
path: root/plugins/pdb-ng/demo
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pdb-ng/demo')
-rw-r--r--plugins/pdb-ng/demo/Cargo.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/pdb-ng/demo/Cargo.toml b/plugins/pdb-ng/demo/Cargo.toml
new file mode 100644
index 00000000..f9f446b5
--- /dev/null
+++ b/plugins/pdb-ng/demo/Cargo.toml
@@ -0,0 +1,21 @@
+[package]
+name = "pdb-import-plugin-static"
+version = "0.1.0"
+edition = "2021"
+
+[lib]
+crate-type = ["staticlib"]
+path = "../src/lib.rs"
+
+[dependencies]
+anyhow = "^1.0"
+binaryninja = {path = "../../../"}
+home = "^0.5.5"
+itertools = "^0.11"
+log = "0.4"
+pdb = { git = "https://github.com/Vector35/pdb-rs", branch = "master" }
+cab = "^0.4"
+regex = "1"
+
+[features]
+demo = []