[package]
edition = "2021"
name = "security_core"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared security types, identity traits, correlation context, and data classification primitives."
documentation = "https://docs.rs/security_core"
readme = "README.md"
keywords = [
"security",
"identity",
"types",
"audit",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kerberosmansour/SunLitSecurityLibraries"
[lib]
name = "security_core"
path = "src/lib.rs"
[[test]]
name = "e2e_sunlit_m1"
path = "tests/e2e_sunlit_m1.rs"
[[test]]
name = "no_unsafe_code"
path = "tests/no_unsafe_code.rs"
[[test]]
name = "sunlit_core_types"
path = "tests/sunlit_core_types.rs"
[dependencies.derive_more]
version = "1"
features = [
"display",
"from",
"into",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.time]
version = "0.3"
features = [
"serde",
"formatting",
"parsing",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.time]
version = "0.3"
features = [
"serde",
"formatting",
"parsing",
"macros",
]
[dev-dependencies.tokio]
version = "1"
features = ["full"]