1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! This module contains the various redactors used by `biip`.
//!
//! Each submodule is responsible for a specific category of redactions.
/// Redacts sensitive information from environment variables.
/// @see env::{secrets_redactor, custom_patterns_redactor}
pub use ;
/// Redacts networking patterns like email addresses and IP addresses.
/// @see network
pub use ;
// Redact sensitive information which follow a specific pattern.
pub use ;
/// Redacts user-specific information like home directory and username.
/// @see user
pub use ;