[package]
edition = "2021"
rust-version = "1.85"
name = "santh-error"
version = "0.2.0"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Actionable error primitives - stable error codes, fix hints, and built-in secret redaction"
homepage = "https://github.com/santhsecurity/santh-error"
documentation = "https://docs.rs/santh-error"
readme = "README.md"
keywords = [
"error",
"diagnostics",
"redaction",
"security",
]
categories = [
"rust-patterns",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/santh-error"
[package.metadata.santh]
status = "beta"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "santh_error"
path = "src/lib.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[[test]]
name = "contract"
path = "tests/contract.rs"
[[test]]
name = "gap"
path = "tests/gap.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.regex]
version = "1.12.3"
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
optional = true
[dev-dependencies.proptest]
version = "=1.9.0"