[package]
edition = "2021"
rust-version = "1.75"
name = "winevt-memory"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Carve Windows Event Log (EVTX) records and chunks from memory images."
readme = false
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/winevt-forensic"
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
[lib]
name = "winevt_memory"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.winevt-core]
version = "0.2.0"
[dependencies.winevt-integrity]
version = "0.2.0"
[dev-dependencies.crc32fast]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1