fabro/lib/crates/fabro-redact/Cargo.toml
Bryan Helmkamp 56de394e01
refactor(redact): extract redaction into dedicated crate
Move secret redaction and DisplaySafeUrl into fabro-redact so credential handling has a narrow ownership boundary. Update direct consumers and docs to depend on fabro_redact instead of fabro_util::redact.
2026-04-24 15:02:23 -04:00

29 lines
565 B
TOML

[package]
name = "fabro-redact"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Secret and credential redaction utilities for Fabro"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
aho-corasick.workspace = true
ref-cast.workspace = true
regex.workspace = true
serde_json.workspace = true
thiserror.workspace = true
url.workspace = true
[build-dependencies]
serde = { workspace = true }
toml.workspace = true
[dev-dependencies]
tracing.workspace = true
tracing-subscriber.workspace = true