velociredactor 0.1.0

Redact secrets and PII from text and structured files, with stable numbered redactions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.crate.md")]
#![deny(missing_docs)]

pub mod agent;
pub mod config;
pub mod detect;
mod error;
pub mod format;
mod glob;
pub mod policy;
mod redactor;
mod render;

pub use error::{Error, FormatError};
pub use glob::Glob;
pub use redactor::{Finding, FormatHint, Redaction, Redactor, RedactorBuilder};
pub use render::{Allow, TOKEN_PREFIX, find_tokens, is_redaction_token, token};