[package]
edition = "2021"
rust-version = "1.80"
name = "exec-pe-core"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PE (Portable Executable) binary format parser for forensic analysis"
readme = false
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/exec-pe-forensic"
[lib]
name = "exec_pe_core"
path = "src/lib.rs"
[[test]]
name = "canonical_finding_tests"
path = "tests/canonical_finding_tests.rs"
[dependencies.forensicnomicon]
version = "1"
[dependencies.goblin]
version = "0.10"
features = [
"pe32",
"pe64",
"std",
]
default-features = false
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"