-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (42 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
49 lines (42 loc) · 1.04 KB
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
[package]
name = "warp_ninja"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
publish = false
[lib]
crate-type = ["lib", "cdylib"]
[features]
demo = []
[dependencies]
tracing = "0.1"
binaryninja = { workspace = true, features = ["rayon"] }
binaryninjacore-sys.workspace = true
warp = { git = "https://github.com/Vector35/warp/", tag = "1.0.1" }
itertools = "0.14.0"
dashmap = { version = "6.1", features = ["rayon"]}
rayon = "1.10"
arboard = {version = "3.4", default-features = false}
walkdir = "2.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.12.0", features = ["v4", "serde"] }
thiserror = "2.0"
ar = { git = "https://github.com/mdsteele/rust-ar" }
tempdir = "0.3.7"
directories = "6.0"
compact_str = { version = "0.9.0", features = ["serde"] }
base64 = "0.22"
serde_qs = "0.15"
[dev-dependencies]
criterion = "0.6"
insta = { version = "1.42", features = ["yaml"] }
[[bench]]
name = "guid"
harness = false
[[bench]]
name = "convert"
harness = false
[[bench]]
name = "function"
harness = false