[package]
name = "libfse"
version = "0.1.3"
edition = "2021"
description = "Fused Semantic Execution: fail-closed policy engine with O(1)-in-rule-count scanning, zero-allocation hot path, and guaranteed enforcement semantics."
publish = true
license = "MIT"
repository = "https://github.com/Michael-A-Kuykendall/airframe"
homepage = "https://github.com/Michael-A-Kuykendall/airframe"
readme = "README.md"
keywords = ["policy", "security", "scanner", "dfa", "inference"]
categories = ["algorithms", "data-structures", "text-processing"]
[dependencies]
aho-corasick = { version = "1.1", features = ["std"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "compare_scanners"
harness = false
[[bench]]
name = "damage_assessment"
harness = false
[lib]
name = "libfse"
path = "src/lib.rs"