summaryrefslogtreecommitdiff
path: root/plugins/pdb-ng/Cargo.toml
blob: 3a9017d5cf7f63df0799e1cd3a2bc2fbf5564446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "pdb-import-plugin"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

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

[dependencies]
anyhow = "^1.0"
binaryninja.workspace = true
binaryninjacore-sys.workspace = true
itertools = "0.14"
log = "0.4"
pdb = { git = "https://github.com/Vector35/pdb-rs", rev = "6016177" }
regex = "1"

[features]
demo = []