[package]
edition = "2021"
name = "secure_resilience"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Security resilience helpers for environment checks, integrity signals, and timeout budgeting."
documentation = "https://docs.rs/secure_resilience"
readme = "README.md"
keywords = [
"security",
"resilience",
"integrity",
"runtime",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kerberosmansour/SunLitSecurityLibraries"
[lib]
name = "secure_resilience"
path = "src/lib.rs"
[[test]]
name = "cve_maswe_0097_root_detection"
path = "tests/cve_maswe_0097_root_detection.rs"
[[test]]
name = "e2e_sunlit_masvs_m5"
path = "tests/e2e_sunlit_masvs_m5.rs"
[[test]]
name = "environment_tests"
path = "tests/environment_tests.rs"
[[test]]
name = "fv_m4_circuit_breaker"
path = "tests/fv_m4_circuit_breaker.rs"
[[test]]
name = "integrity_tests"
path = "tests/integrity_tests.rs"
[[test]]
name = "prop_rasp"
path = "tests/prop_rasp.rs"
[[test]]
name = "rasp_tests"
path = "tests/rasp_tests.rs"
[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"