[package]
edition = "2024"
name = "wafrift-evolution"
version = "0.2.4"
authors = ["Santh Project <contact@santh.dev>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Genetic algorithm engine, differential analysis, intelligence feedback loop, and WAF-aware advisor."
readme = "README.md"
keywords = [
"waf",
"evolution",
"security",
"fuzzing",
"evasion",
]
categories = [
"algorithms",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/wafrift"
resolver = "2"
[lib]
name = "wafrift_evolution"
path = "src/lib.rs"
[[test]]
name = "checkpoint_roundtrip"
path = "tests/checkpoint_roundtrip.rs"
[[test]]
name = "diversity_score"
path = "tests/diversity_score.rs"
[[test]]
name = "engine_clone"
path = "tests/engine_clone.rs"
[[test]]
name = "id_remapping"
path = "tests/id_remapping.rs"
[[test]]
name = "stagnation_termination"
path = "tests/stagnation_termination.rs"
[dependencies.lru]
version = "0.18"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.wafrift-detect]
version = "0.2.4"
[dependencies.wafrift-encoding]
version = "0.2.4"
[dependencies.wafrift-types]
version = "0.2.4"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.tokio-test]
version = "0.4"
[build-dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[build-dependencies.toml]
version = "0.8"
[lints.rust]
unsafe_code = "warn"
unused_must_use = "deny"