[package]
name = "captchaforge"
version = "0.2.36"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
authors = ["Santh Project <contact@santh.dev>"]
description = "[DO NOT USE — UNDER ACTIVE DEVELOPMENT, NOT PRODUCTION-READY] Captcha solver scaffolding for chromiumoxide-driven browsers. The architecture is in place (vendor solvers, retry-loop iframe walking, VLM provider abstraction, real-WAF bench harness) but the live-vendor success rate is still 0% — Cloudflare Turnstile / hCaptcha / reCAPTCHA detect us at a TLS / CDP fingerprint layer that no flag-based stealth has cleared. Watch the repo; do not depend on this for any real workload."
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"
bytes = "1"
tempfile = "3"
sha2 = "0.10"
thiserror = "1"
[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"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "hot_path"
harness = false
[workspace]
members = ["bench", "cli", "challenge", "rules-crate"]
exclude = ["bindings/python", "bindings/node", "bindings/wasm"]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/captchaforge-v{ version }-{ target }.{ archive-format }"
bin-dir = "captchaforge-v{ version }-{ target }/{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"