-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
47 lines (41 loc) · 1.25 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
[package]
name = "rhabdomancer"
version = "0.5.1"
authors = ["Marco Ivaldi <raptor@0xdeadbeef.info>"]
edition = "2024"
description = "Vulnerability research assistant that locates calls to potentially insecure API functions in a binary file."
homepage = "https://0xdeadbeef.info/"
repository = "https://github.com/0xdea/rhabdomancer"
documentation = "https://0xdeadbeef.info/rhabdomancer/rhabdomancer/"
license = "MIT"
keywords = ["reverse-engineering", "binary-file", "vuln-dev", "ida", "idalib"]
categories = ["command-line-utilities"]
exclude = [".cargo/*", ".github/*", ".img/*", "tests/*"]
[dependencies]
idalib = "0.5"
anyhow = "1.0"
config = "0.15"
serde = { version = "1.0", features = ["derive"] }
regex = "1.11"
[build-dependencies]
idalib-build = "0.5"
[[test]]
name = "tests"
path = "tests/main.rs"
harness = false
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
multiple_crate_versions = "allow"
significant_drop_tightening = "allow"
[lints.rust]
missing_docs = { level = "warn" }
[profile.release]
# see https://github.com/johnthagen/min-sized-rust
strip = true
# opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"