From fb8eb1501b7f4b8eaefcb26131230ba42083c153 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Fri, 14 Feb 2025 00:07:53 -0500 Subject: Add SVD Loader Plugin --- plugins/svd/Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plugins/svd/Cargo.toml (limited to 'plugins/svd/Cargo.toml') 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 -- cgit v1.3.1