-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
executable file
·65 lines (57 loc) · 1.51 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
[package]
name = "capa"
version = "0.3.20"
description = "File capability extractor."
authors = ["Marirs <[email protected]>", "Andrey Mnatsakanov <[email protected]>", "Jorge Alejandro Durán Royo<[email protected]>"]
keywords = ["capa", "fce", "capability", "aslr", "reverse"]
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/marirs/capa-rs"
homepage = "https://github.com/marirs/capa-rs"
exclude = ["examples", "data"]
edition = "2021"
[dependencies]
hex = "0.4.3"
itertools = "0.13.0"
pdb = "0.8.0"
petgraph = "0.6.2"
regex = "1.5"
fancy-regex = { git = "https://github.com/mnaza/fancy-regex.git" }
serde = { version = "1", features = ["derive"] }
smda = { git = "https://github.com/marirs/smda-rs.git" }
thiserror = "1"
walkdir = "2.3.2"
yaml-rust = "0.4.5"
goblin = { version = "0.9.1", features = ["alloc"] }
maplit = "1"
dnfile = { git = "https://github.com/marirs/dnfile-rs.git", branch = "master" }
lazy_static = "1"
parking_lot = "0.12.3"
serde_json = "1"
memoffset = "0.9.1"
memmap2 = "0.9.5"
scroll = "0.12.0"
once_cell = "1.20"
dynamic-loader-cache = "0.2"
[dev-dependencies]
clap = { version = "4.5", features = ["cargo", "derive"] }
prettytable-rs = "0.10.0"
[lib]
name = "capa"
path = "src/lib.rs"
[features]
default = ["properties"]
verbose = []
properties = []
[[example]]
name = "capa_cli"
path = "examples/capa_cli.rs"
required-features = ["properties"]
[profile.dev]
opt-level = 3
[profile.release]
codegen-units = 1
debug-assertions = false
debug = false
opt-level = 3
lto = true