[package]
edition = "2021"
rust-version = "1.85"
name = "ewf-forensic"
version = "0.3.0"
authors = ["Albert Hui"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forensic integrity analysis and repair for EWF (Expert Witness Format / E01) images"
readme = "README.md"
keywords = [
"forensics",
"ewf",
"e01",
"integrity",
"tampering",
]
categories = ["parser-implementations"]
license = "MIT"
repository = "https://github.com/SecurityRonin/ewf-forensic"
[lib]
name = "ewf_forensic"
path = "src/lib.rs"
[[example]]
name = "validate"
path = "examples/validate.rs"
[[test]]
name = "builder"
path = "tests/builder.rs"
[[test]]
name = "integrity_tests"
path = "tests/integrity_tests.rs"
[[test]]
name = "new_capabilities_tests"
path = "tests/new_capabilities_tests.rs"
[[test]]
name = "real_image_tests"
path = "tests/real_image_tests.rs"
[[test]]
name = "repair_tests"
path = "tests/repair_tests.rs"
[dependencies.flate2]
version = "1"
[dependencies.md-5]
version = "0.10"
[dependencies.sha1]
version = "0.10"
[dev-dependencies.md-5]
version = "0.10"
[dev-dependencies.tempfile]
version = "3"