[package]
edition = "2021"
rust-version = "1.85"
name = "attackstr"
version = "0.2.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
exclude = ["target/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Grammar-based security payload generation - TOML-driven, composable, encoding-aware"
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"security",
"payloads",
"payload-generation",
"fuzzing",
"pentest",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhreal/attackstr"
[features]
default = []
exploits = []
[lib]
name = "attackstr"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["exploits"]
[[example]]
name = "custom_encoding"
path = "examples/custom_encoding.rs"
[[example]]
name = "mutations"
path = "examples/mutations.rs"
[[example]]
name = "toml_config"
path = "examples/toml_config.rs"
required-features = ["exploits"]
[[test]]
name = "adversarial_tests"
path = "tests/adversarial/mod.rs"
[[test]]
name = "break_it"
path = "tests/break_it.rs"
[[test]]
name = "concurrent_tests"
path = "tests/concurrent/mod.rs"
[[test]]
name = "integration_tests"
path = "tests/integration/mod.rs"
[[test]]
name = "property_tests"
path = "tests/property/mod.rs"
[[test]]
name = "regression_tests"
path = "tests/regression/mod.rs"
[[test]]
name = "unit_tests"
path = "tests/unit/mod.rs"
[dependencies.encodex]
version = "0.1.13"
package = "santh-encodex"
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.thiserror]
version = "=2.0.18"
[dependencies.toml]
version = "=0.8.23"
[dependencies.tracing]
version = "=0.1.44"
[dependencies.urlencoding]
version = "=2.1.3"
[dev-dependencies.proptest]
version = "=1.9.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[dev-dependencies.tracing-subscriber]
version = "=0.3.23"
features = ["fmt"]