[package]
edition = "2021"
name = "sqlite-forensic"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forensic anomaly auditor for SQLite databases — header-integrity findings as graded report::Finding, built on sqlite-core (WS-C spike skeleton; WS-E expands carving/WAL/freelist)."
readme = false
license = "Apache-2.0"
[lib]
name = "sqlite_forensic"
path = "src/lib.rs"
[[test]]
name = "audit"
path = "tests/audit.rs"
[[test]]
name = "audit_realdb"
path = "tests/audit_realdb.rs"
[[test]]
name = "carve"
path = "tests/carve.rs"
[[test]]
name = "carve_all"
path = "tests/carve_all.rs"
[[test]]
name = "carve_fragments"
path = "tests/carve_fragments.rs"
[[test]]
name = "nemetz_metrics"
path = "tests/nemetz_metrics.rs"
[[test]]
name = "nemetz_tool_comparison"
path = "tests/nemetz_tool_comparison.rs"
[[test]]
name = "oracle_differential"
path = "tests/oracle_differential.rs"
[[test]]
name = "overflow_chain"
path = "tests/overflow_chain.rs"
[[test]]
name = "prior_version"
path = "tests/prior_version.rs"
[dependencies.forensicnomicon]
version = "0.4"
[dependencies.sqlite-core]
version = "0.1.0"
[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.expect_used]
level = "deny"
priority = 0
[lints.clippy.items_after_statements]
level = "allow"
priority = 1
[lints.clippy.manual_let_else]
level = "allow"
priority = 1
[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.similar_names]
level = "allow"
priority = 1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.clippy.too_many_lines]
level = "allow"
priority = 1
[lints.clippy.unwrap_used]
level = "deny"
priority = 0
[lints.rust]
unsafe_code = "forbid"