redact-paperasse-core 0.1.2

Ingest -> detect -> redact pipeline: image/PDF/text in, redacted image/PDF/text/markdown out
docs.rs failed to build redact-paperasse-core-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

redact-paperasse-core: image/PDF/text in, redacted image/PDF/text/markdown out. A privacy engine built for agents — fast enough to run in-process (via the Node/Python/WASM bindings in this workspace) rather than only as a REST call.

Input (image | pdf | text)
   │
   ▼
[1] ingest   — anydoc (office formats + text PDFs) or liteparse
               (scanned/image PDFs, plain images — OCR + bounding boxes)
   │
   ▼
[2] detect   — Tier A (in-process regex+checksum, default) and/or
               Tier B (optional REST call to Presidio for NER)
   │
   ▼
[3] redact   — mask text/markdown spans, or fill pixel bounding boxes
   │
   ▼
Output (redacted image | redacted pdf | redacted text | markdown)

All three stages are wired end to end, including pixel redaction (redact::redact_image_bytes / redact::redact_pdf_bytes) — see those functions' doc comments for what's still unverified against a real build (DPI assumptions, the printpdf reassembly transform).