sensitive-fmt 0.2.0

Derive Debug and Display while honoring #[sensitive(redact | truncate = N | skip)] field attributes.
Documentation
1
2
3
4
5
6
use sensitive_fmt::SensitiveDebug;

#[derive(SensitiveDebug)]
struct Bad(u32, String);

fn main() {}