-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (93 loc) · 3.14 KB
/
Copy pathCargo.toml
File metadata and controls
103 lines (93 loc) · 3.14 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "binlex"
version.workspace = true
edition = "2024"
license = "MIT"
description = "A Binary Genetic Trait Lexer Framework"
authors = ["c3rb3ru5d3d53c"]
build = "build.rs"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["winnt", "fileapi", "ioapiset", "winioctl"] }
inkwell = { version = "0.9.0", default-features = false, features = ["llvm22-1-force-static", "target-x86", "target-aarch64"] }
llvm-sys = { version = "221.0.1" }
[target.'cfg(not(windows))'.dependencies]
inkwell = { version = "0.9.0", default-features = false, features = ["llvm22-1-force-static", "target-x86", "target-aarch64"] }
llvm-sys = { version = "221.0.1" }
[dependencies]
clap = { version = "4.5.27", features = ["derive"] }
lief = "0.15.1"
capstone = "0.12.0"
object = "0.37.3"
llvm-asm = { path = "crates/llvm-asm" }
fast-tlsh = "0.1.6"
ring = "0.17.8"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
postcard = { version = "1.1.3", features = ["alloc"] }
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"
interprocess = "2.2.3"
pdb = "0.8.0"
memmap2 = "0.9.5"
dirs = "6.0.0"
toml = "0.8.19"
glob = "0.3.2"
indexmap = "2.7.1"
cxx = "=1.0.138"
image = { version = "0.25.8", default-features = false, features = ["png"] }
axum = "0.8.4"
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread", "signal"] }
reqwest = { version = "0.12.23", default-features = false, features = ["blocking", "cookies", "json", "rustls-tls"] }
burn = { version = "0.21.0-pre.2", default-features = false, features = ["std", "dispatch", "ndarray", "cuda", "vulkan"] }
semver = "1.0.27"
base64 = "0.22.1"
object_store = { version = "0.13.1", features = ["fs"] }
lancedb = { version = "0.27.1", default-features = false }
arrow-array = { version = "57.0.0", default-features = false }
arrow-schema = { version = "57.0.0", default-features = false }
futures = "0.3.31"
tracing = "0.1.41"
winnow = "0.7.15"
chrono = { version = "0.4.42", features = ["serde"] }
rusqlite = { version = "0.37.0", features = ["bundled"] }
yara-x = "1.14.0"
z3 = { version = "0.20.0", features = ["vendored"] }
z3-sys = { version = "0.11.0", features = ["vendored"] }
[dev-dependencies]
tempfile = "3.23.0"
unicorn-engine = { version = "2.1.5", default-features = false, features = ["arch_x86"] }
unicorn-engine-sys = "2.1.5"
num-bigint = "0.4.6"
num-traits = "0.2.19"
[workspace]
members = [
"bindings/python/",
"crates/llvm-asm",
"crates/binlex_tools/binlex",
"crates/binlex_tools/binlex-hash",
"crates/binlex_tools/binlex-image",
"crates/binlex_tools/binlex-mcp",
"crates/binlex_tools/binlex-server",
"crates/binlex_tools/binlex-symbols",
"crates/binlex_tools/binlex-test",
"crates/binlex_tools/binlex-web",
"crates/binlex_tools/binlex-yara",
"crates/binlex_processors/example",
]
[workspace.package]
version = "2.0.0"
[patch.crates-io]
llvm-sys = { path = "vendor/llvm-sys" }
[profile.dev]
debug = 0
[profile.test]
debug = 0
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 16