[package]
edition = "2021"
rust-version = "1.70"
name = "leakguard"
version = "0.5.0"
authors = [
"ptukovar",
"github.com/ptukovar",
]
build = false
exclude = [
"/.github",
"/assets",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, zero-dependency redaction of secrets and PII (emails, credit cards, IPs, JWTs, API keys, and more) from text and logs."
homepage = "https://github.com/ptukovar/leakguard"
documentation = "https://docs.rs/leakguard"
readme = "README.md"
keywords = [
"redaction",
"pii",
"secrets",
"logging",
"privacy",
]
categories = [
"text-processing",
"command-line-utilities",
"value-formatting",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ptukovar/leakguard"
[badges.maintenance]
status = "actively-developed"
[features]
default = ["std"]
std = []
[lib]
name = "leakguard"
path = "src/lib.rs"
[[bin]]
name = "leakguard"
path = "src/bin/leakguard.rs"
required-features = ["std"]
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "redact_logs"
path = "examples/redact_logs.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "invariants"
path = "tests/invariants.rs"
[lints.rust]
unsafe_code = "forbid"