redact-paperasse-core 0.1.2

Ingest -> detect -> redact pipeline: image/PDF/text in, redacted image/PDF/text/markdown out
1
2
3
4
5
6
7
pub mod tier_a;
#[cfg(feature = "tier-b")]
pub mod tier_b;

pub use tier_a::TierA;
#[cfg(feature = "tier-b")]
pub use tier_b::TierB;