[package]
edition = "2024"
name = "wafrift-evolution"
version = "0.3.1"
authors = ["Santh Project <security@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 = "ast_mcts_wiring"
path = "tests/ast_mcts_wiring.rs"
[[test]]
name = "body_padding_unicode_audit"
path = "tests/body_padding_unicode_audit.rs"
[[test]]
name = "booster_wiring"
path = "tests/booster_wiring.rs"
[[test]]
name = "budget_repay_audit"
path = "tests/budget_repay_audit.rs"
[[test]]
name = "checkpoint_roundtrip"
path = "tests/checkpoint_roundtrip.rs"
[[test]]
name = "coverage_wiring"
path = "tests/coverage_wiring.rs"
[[test]]
name = "diversity_score"
path = "tests/diversity_score.rs"
[[test]]
name = "engine_clone"
path = "tests/engine_clone.rs"
[[test]]
name = "engine_panic_audit"
path = "tests/engine_panic_audit.rs"
[[test]]
name = "ensemble_dilution_wiring"
path = "tests/ensemble_dilution_wiring.rs"
[[test]]
name = "id_remapping"
path = "tests/id_remapping.rs"
[[test]]
name = "rule_corpus_proptest"
path = "tests/rule_corpus_proptest.rs"
[[test]]
name = "stagnation_termination"
path = "tests/stagnation_termination.rs"
[dependencies.boundedio]
version = "0.1.0"
[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.sqlparser]
version = "0.61.0"
[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.3.1"
[dependencies.wafrift-encoding]
version = "0.3.1"
[dependencies.wafrift-types]
version = "0.3.1"
[dependencies.wafrift-wafmodel]
version = "0.3.1"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.6.5"
[build-dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[build-dependencies.toml]
version = "0.8"
[lints.clippy]
assertions_on_constants = "allow"
doc_lazy_continuation = "allow"
too_many_arguments = "allow"
[lints.rust]
unsafe_code = "warn"
unused_must_use = "deny"