-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathCargo.toml
75 lines (62 loc) · 1.31 KB
/
Cargo.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "binlex"
version = "2.0.0"
edition = "2021"
license = "LGPL"
description = "A Binary Genetic Trait Lexer Framework"
authors = ["c3rb3ru5d3d53c"]
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["winnt", "fileapi", "ioapiset", "winioctl"] }
[dependencies]
clap = { version = "4.5.27", features = ["derive"] }
lief = "0.15.1"
capstone = "0.12.0"
fast-tlsh = "0.1.6"
ring = "0.17.8"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
twox-hash = "2.0.0"
rand = { version = "0.8.5", features = ["small_rng"] }
once_cell = "1.20.2"
rayon = "1.10.0"
crossbeam = "0.8.4"
crossbeam-skiplist = "0.1.3"
lz4 = "1.28.1"
pdb = "0.8.0"
memmap2 = "0.9.5"
dirs = "6.0.0"
toml = "0.8.19"
glob = "0.3.2"
indexmap = "2.7.1"
[workspace]
members = [
"src/bindings/python/",
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[[bin]]
name = "binlex"
path = "src/bin/binlex.rs"
[[bin]]
name = "blyara"
path = "src/bin/blyara.rs"
[[bin]]
name = "blpdb"
path = "src/bin/blpdb.rs"
[[bin]]
name = "blrizin"
path = "src/bin/blrizin.rs"
[[bin]]
name = "blimage"
path = "src/bin/blimage.rs"
[[bin]]
name = "blhash"
path = "src/bin/blhash.rs"
[[bin]]
name = "blelfsym"
path = "src/bin/blelfsym.rs"
[[bin]]
name = "blmachosym"
path = "src/bin/blmachosym.rs"