[package]
exclude = ["target/"]
name = "stealthreq"
version = "0.1.0"
edition = "2021"
description = "Trait-driven, human-like request mutation primitives for crawlers and scrapers."
license = "MIT"
repository = "https://github.com/santhsecurity/stealthreq"
authors = ["Corum Collective LLC <engineering@corumcollective.com>"]
keywords = ["crawler", "scraper", "http", "stealth", "waf"]
categories = ["network-programming", "web-programming"]
[dependencies]
rand = "0.8"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
toml = "0.8"
[dev-dependencies]
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "http2", "charset", "json"] }
hyper = { version = "1", features = ["http1", "http2", "client"] }
http = "1"
ureq = "2"
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
[features]
default = []