[package] name = "diagnostics-redaction-spike" version = "0.1.0" edition = "2021" publish = false description = "Chanora PoC: diagnostic redaction policy + redactor covering REDACT-TC-001..010 from the diagnostic redaction audit report." # Not product code. See docs/architecture/proof-of-concept-plan.md §4. # Authority: docs/security/diagnostic-redaction-audit-report.md, # SRS-093 / SysRS-152/154/155, SDD §5 redaction notes. [lib] name = "diagnostics_redaction_spike" path = "src/lib.rs" [[bin]] name = "diagnostics-redaction-cli" path = "src/main.rs" [dependencies] regex = "1" once_cell = "1" thiserror = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" [dev-dependencies] indoc = "2"