blob: 2025de1338d1bf2690f75c9d6b4285e281d0bb21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "pdb-import-plugin"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
anyhow = "^1.0"
binaryninja.workspace = true
binaryninjacore-sys.workspace = true
itertools = "^0.11"
log = "0.4"
pdb = { git = "https://github.com/Vector35/pdb-rs", rev = "6016177" }
regex = "1"
[features]
demo = []
|