[package]
edition = "2021"
name = "secure_privacy"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Privacy controls for classification, consent, retention, pseudonymization, and redaction."
documentation = "https://docs.rs/secure_privacy"
readme = "README.md"
keywords = [
"security",
"privacy",
"pii",
"redaction",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kerberosmansour/SunLitSecurityLibraries"
[lib]
name = "secure_privacy"
path = "src/lib.rs"
[[test]]
name = "classifier_tests"
path = "tests/classifier_tests.rs"
[[test]]
name = "consent_tests"
path = "tests/consent_tests.rs"
[[test]]
name = "cve_maswe_0109_pii_leakage"
path = "tests/cve_maswe_0109_pii_leakage.rs"
[[test]]
name = "e2e_sunlit_masvs_m6"
path = "tests/e2e_sunlit_masvs_m6.rs"
[[test]]
name = "prop_pseudonymizer"
path = "tests/prop_pseudonymizer.rs"
[[test]]
name = "pseudonymizer_tests"
path = "tests/pseudonymizer_tests.rs"
[[test]]
name = "retention_tests"
path = "tests/retention_tests.rs"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.regex]
version = "1"
[dependencies.security_core]
version = "0.1.2"
package = "security_core"
[dependencies.security_events]
version = "0.1.2"
package = "security_events"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.time]
version = "0.3"
features = [
"serde",
"formatting",
"parsing",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"