forked from vulhunt-re/vulhunt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (36 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
47 lines (36 loc) · 836 Bytes
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
[workspace]
resolver = "2"
members = [
# VulHunt (command line interface)
"bias-vulhunt",
# Lifter and type database utilities
"bias-lutil",
"bias-tutil",
# VulHunt components
"bias-vulhunt-engine",
"bias-vulhunt-mcp",
# Analysis framework
"bias-core",
"bias-core-derive",
# Analysis orchestration and reporting
"bias",
# Analysis compatibility layers/adapters
"bias-compat-fwhunt",
"bias-compat-patfind",
"bias-compat-flirt",
# Binary Ninja loader
"bias-loader-bndb",
# Binarly Transparency Platform (BTP) client
"bias-btp",
]
[profile.release]
lto = "thin"
[profile.production]
inherits = "release"
lto = "fat"
codegen-units = 1
[profile.triage]
inherits = "dev"
opt-level = 3
[workspace.lints.rust]
mismatched_lifetime_syntaxes = "allow"