blob: 64c04c5049f2120a4eeacee0ac0bb48f4d2d5a4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
[package]
name = "warp_ninja"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
binaryninja = { path = "../../rust", features = ["rayon"] }
# Used to link with for tests.
binaryninjacore-sys = { path = "../../rust/binaryninjacore-sys", optional = true }
warp = { git = "https://github.com/Vector35/warp/", rev = "bae7379" }
log = "0.4"
arboard = "3.4"
rayon = "1.10"
dashmap = "6.1"
walkdir = "2.5"
# For sigem
env_logger = "0.11.5"
clap = { version = "4.5.16", features = ["derive"] }
ar = { git = "https://github.com/mdsteele/rust-ar" }
tempdir = "0.3.7"
serde_json = "1.0"
[features]
test = ["dep:binaryninjacore-sys"]
[build-dependencies]
cc = "1.1.28"
[dev-dependencies]
criterion = "0.5.1"
insta = { version = "1.38.0", features = ["yaml"] }
[profile.release]
panic = "abort"
lto = true
debug = "full"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[[bench]]
name = "guid"
harness = false
[[bench]]
name = "convert"
harness = false
[[bench]]
name = "function"
harness = false
|