From a49c29b7aea694e41fb92b100325ce34affb413f Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Thu, 4 Sep 2025 14:40:53 -0700 Subject: [Swift] Initial skeleton of a plug-in for Swift support --- plugins/workflow_swift/Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plugins/workflow_swift/Cargo.toml (limited to 'plugins/workflow_swift/Cargo.toml') diff --git a/plugins/workflow_swift/Cargo.toml b/plugins/workflow_swift/Cargo.toml new file mode 100644 index 00000000..43073718 --- /dev/null +++ b/plugins/workflow_swift/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "workflow_swift" +version = "0.1.0" +edition = "2021" +license = "BSD-3-Clause" +publish = false + +[lib] +crate-type = ["staticlib", "cdylib"] + +[features] +demo = [] + +[dependencies] +binaryninja = { workspace = true } +binaryninjacore-sys.workspace = true +tracing = "0.1" +thiserror = "2.0" -- cgit v1.3.1