diff options
| author | Mason Reed <mason@vector35.com> | 2025-02-14 00:07:53 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-02-24 20:11:57 -0500 |
| commit | fb8eb1501b7f4b8eaefcb26131230ba42083c153 (patch) | |
| tree | 9eb5f090b0e31e4e49d4afc9e8220b323e7f7a98 /plugins/svd/Cargo.toml | |
| parent | ddfdfe03426fa6ed1d73f3114e8f71ac0c54bef7 (diff) | |
Add SVD Loader Plugin
Diffstat (limited to 'plugins/svd/Cargo.toml')
| -rw-r--r-- | plugins/svd/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/svd/Cargo.toml b/plugins/svd/Cargo.toml new file mode 100644 index 00000000..17325adf --- /dev/null +++ b/plugins/svd/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "svd_ninja" +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" + +[lib] +crate-type = ["cdylib", "lib"] + +[dependencies] +binaryninja.workspace = true +binaryninjacore-sys.workspace = true +svd-parser = { version = "0.14.8", features = ["expand"] } +log = "0.4" +serde_json = "1.0" + +[dev-dependencies] +insta = { version = "1.42", features = ["yaml"] }
\ No newline at end of file |
