[package]
edition = "2021"
name = "libfse"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fused Semantic Execution: A Fail-Closed Policy Engine"
homepage = "https://github.com/Michael-A-Kuykendall/airframe"
readme = "README.md"
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"
[[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"]