rtb-redact 0.5.2

Rust Tool Base — free-form secret redaction for log lines, telemetry events, and diagnostic surfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Step definitions for `tests/features/redact.feature`.

pub mod redact_steps;

use cucumber::World;

/// Per-scenario state.
#[derive(Debug, Default, World)]
pub struct RedactWorld {
    pub input: String,
    pub output: String,
}