summaryrefslogtreecommitdiff
path: root/plugins/svd/demo/Cargo.toml
blob: b7147574031c4b49b106c6298bd671afa4447fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "svd_ninja-static"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

[lib]
crate-type = ["staticlib", "lib"]
path = "../src/lib.rs"

[dependencies]
binaryninja = { workspace = true, features = ["demo"]}
binaryninjacore-sys.workspace = true
svd-parser = { version = "0.14.8", features = ["expand"] }
serde_json = "1.0"
tracing = "0.1"

[dev-dependencies]
insta = { version = "1.42", features = ["yaml"] }

[features]
demo = []