[package]
name = "captchaforge"
version = "0.2.21"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
authors = ["Santh Project <contact@santh.dev>"]
description = "Automatic CAPTCHA detection and multi-strategy solving for chromiumoxide-driven headless browsers (Cloudflare Turnstile, reCAPTCHA v2/v3, hCaptcha, image grids, audio, sliders)."
repository = "https://github.com/santhsecurity/captchaforge"
readme = "README.md"
keywords = ["captcha", "headless-browser", "chromiumoxide", "turnstile", "recaptcha"]
categories = ["web-programming", "authentication"]
[dependencies]
chromiumoxide = { version = "0.9", default-features = true }
anyhow = "1"
async-trait = "0.1"
base64 = "0.22"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
toml = "0.8"
url = "2"
futures-util = "0.3"
[lints.rust]
unsafe_code = "forbid"
[dev-dependencies]
futures-util = "0.3"
which = "7"
proptest = "1.5"
insta = { version = "1.41", features = ["json", "redactions"] }
scraper = "0.20"
tempfile = "3"
[workspace]
members = ["bench", "cli"]