blob: a1e46891f13a975f6cd09e49669522398e3797a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "workflow_swift-static"
version = "0.1.0"
edition = "2021"
license = "BSD-3-Clause"
publish = false
[lib]
crate-type = ["staticlib"]
path = "../src/lib.rs"
[features]
demo = []
[dependencies]
binaryninja = { workspace = true, features = ["demo"] }
binaryninjacore-sys.workspace = true
tracing = "0.1"
thiserror = "2.0"
swift-demangler = { git = "https://github.com/Vector35/swift-demangler.git" }
|