blob: 449abee0bf72246a54a279336ea28692fff4bf71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "workflow_objc-static"
version = "0.1.0"
edition = "2021"
license = "BSD-3-Clause"
[lib]
crate-type = ["staticlib"]
path = "../src/lib.rs"
[features]
demo = []
[dependencies]
binaryninja = { workspace = true, features = ["demo"] }
binaryninjacore-sys.workspace = true
dashmap = { version = "6.1", features = ["rayon"]}
once_cell = "1.20"
thiserror = "2.0"
bstr = "1.12"
tracing = "0.1"
|