[package]
edition = "2021"
rust-version = "1.80"
name = "sqlite-forensic"
version = "0.10.2"
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 = "README.md"
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 = "belkasoft_robustness"
path = "tests/belkasoft_robustness.rs"
[[test]]
name = "blob_interpreter"
path = "tests/blob_interpreter.rs"
[[test]]
name = "blob_meta"
path = "tests/blob_meta.rs"
[[test]]
name = "carve"
path = "tests/carve.rs"
[[test]]
name = "carve_all"
path = "tests/carve_all.rs"
[[test]]
name = "carve_contract"
path = "tests/carve_contract.rs"
[[test]]
name = "carve_fragments"
path = "tests/carve_fragments.rs"
[[test]]
name = "case_uco"
path = "tests/case_uco.rs"
[[test]]
name = "cfreds_journal_anomaly"
path = "tests/cfreds_journal_anomaly.rs"
[[test]]
name = "cfreds_journal_recovery"
path = "tests/cfreds_journal_recovery.rs"
[[test]]
name = "cfreds_recovery"
path = "tests/cfreds_recovery.rs"
[[test]]
name = "dedup_cross_table"
path = "tests/dedup_cross_table.rs"
[[test]]
name = "detector_b"
path = "tests/detector_b.rs"
[[test]]
name = "drop_recreate_risk"
path = "tests/drop_recreate_risk.rs"
[[test]]
name = "dropped_schema"
path = "tests/dropped_schema.rs"
[[test]]
name = "exclusion_invariant_cross_table"
path = "tests/exclusion_invariant_cross_table.rs"
[[test]]
name = "freeblock_highrowid"
path = "tests/freeblock_highrowid.rs"
[[test]]
name = "hot_journal_anomaly"
path = "tests/hot_journal_anomaly.rs"
[[test]]
name = "ios_realdata_robustness"
path = "tests/ios_realdata_robustness.rs"
[[test]]
name = "localstorage_interpreter"
path = "tests/localstorage_interpreter.rs"
[[test]]
name = "nemetz_metrics"
path = "tests/nemetz_metrics.rs"
[[test]]
name = "nemetz_robustness"
path = "tests/nemetz_robustness.rs"
[[test]]
name = "nemetz_tool_comparison"
path = "tests/nemetz_tool_comparison.rs"
[[test]]
name = "nist_dlc_snapshot"
path = "tests/nist_dlc_snapshot.rs"
[[test]]
name = "oracle_differential"
path = "tests/oracle_differential.rs"
[[test]]
name = "overflow_chain"
path = "tests/overflow_chain.rs"
[[test]]
name = "paper_fp_scenarios"
path = "tests/paper_fp_scenarios.rs"
[[test]]
name = "perf_large_carve"
path = "tests/perf_large_carve.rs"
[[test]]
name = "prior_version"
path = "tests/prior_version.rs"
[[test]]
name = "property_differential"
path = "tests/property_differential.rs"
[[test]]
name = "row_history_residue"
path = "tests/row_history_residue.rs"
[[test]]
name = "sqlite_unhide_corpus"
path = "tests/sqlite_unhide_corpus.rs"
[dependencies.forensic-carve]
version = "0.1"
[dependencies.forensicnomicon]
version = "1"
[dependencies.inventory]
version = "0.3"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlite-core]
version = "0.10.1"
[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"