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