[package]
edition = "2024"
rust-version = "1.88"
name = "oatf"
version = "0.2.0"
build = false
exclude = [
"spec/",
"fuzz/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for the Open Agent Threat Format (OATF)"
homepage = "https://oatf.io"
documentation = "https://docs.rs/oatf"
readme = "README.md"
keywords = [
"security",
"mcp",
"a2a",
"agent",
"threat",
]
categories = [
"parser-implementations",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/oatf-spec/oatf-rs"
[features]
cel-eval = ["dep:cel"]
default = ["cel-eval"]
[lib]
name = "oatf"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "mutant_coverage"
path = "tests/mutant_coverage.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "test_map_order"
path = "tests/test_map_order.rs"
[[test]]
name = "validate_extra"
path = "tests/validate_extra.rs"
[dependencies.cel]
version = "0.12.0"
optional = true
[dependencies.regex]
version = "1.12.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde-saphyr]
version = "0.0.20"
[dependencies.serde_json]
version = "1.0.149"
features = ["preserve_order"]
[dependencies.serde_json_path]
version = "0.7.2"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.serde-saphyr]
version = "0.0.20"
[dev-dependencies.serde_json]
version = "1.0.149"
features = ["preserve_order"]