[package]
edition = "2021"
rust-version = "1.85"
name = "dar-forensic"
version = "0.7.1"
authors = ["Albert Hui"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forensic-grade reader and anomaly auditor for Denis Corbin DAR (Disk ARchiver) archives, including the Passware Kit Mobile variant; hardened and fuzz-tested against malicious input. Built on dar-core."
homepage = "https://github.com/SecurityRonin/dar-forensic"
documentation = "https://docs.rs/dar-forensic"
readme = "README.md"
keywords = [
"forensics",
"dar",
"archive",
"passware",
"backup",
]
categories = ["parser-implementations"]
license = "MIT"
repository = "https://github.com/SecurityRonin/dar-forensic"
[features]
default = []
serde = [
"dep:serde",
"dar/serde",
"forensicnomicon/serde",
]
[lib]
name = "dar_forensic"
path = "src/lib.rs"
[[example]]
name = "list_dar"
path = "examples/list_dar.rs"
[[test]]
name = "canonical_finding_tests"
path = "tests/canonical_finding_tests.rs"
[[test]]
name = "real_images"
path = "tests/real_images.rs"
[[test]]
name = "synthetic"
path = "tests/synthetic.rs"
[dependencies.dar]
version = "0.7.0"
package = "dar-core"
[dependencies.forensicnomicon]
version = "0.3.1"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dev-dependencies.flate2]
version = "1"
features = ["rust_backend"]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 1
[lints.clippy.cast_possible_wrap]
level = "allow"
priority = 1
[lints.clippy.cast_precision_loss]
level = "allow"
priority = 1
[lints.clippy.cast_sign_loss]
level = "allow"
priority = 1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.doc_markdown]
level = "allow"
priority = 1
[lints.clippy.expect_used]
level = "deny"
priority = 0
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1
[lints.clippy.must_use_candidate]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.clippy.unwrap_used]
level = "deny"
priority = 0
[lints.rust]
unsafe_code = "forbid"