blob: 590cacca5ce6f6132b9e274ff7986b5ed8328418 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "pdb-import-plugin-static"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[lib]
crate-type = ["staticlib"]
path = "../src/lib.rs"
[dependencies]
anyhow = "^1.0"
binaryninja = { workspace = true, features = ["demo"]}
binaryninjacore-sys.workspace = true
itertools = "0.14"
pdb = { git = "https://github.com/Vector35/pdb-rs", rev = "6016177" }
regex = "1"
tracing = "0.1"
[features]
demo = []
|