[package]
name = "cloudscraper-rs"
version = "0.2.0"
edition = "2024"
authors = ["Ryujin-K"]
description = "Early-stage Cloudflare challenge solver bringing Python's Cloudscraper ideas to Rust"
license = "MIT"
repository = "https://github.com/Ryujin-K/cloudscraper-rs"
homepage = "https://github.com/Ryujin-K/cloudscraper-rs"
documentation = "https://docs.rs/cloudscraper-rs"
readme = "README.md"
keywords = ["cloudflare", "scraping", "bypass", "challenge", "anti-bot"]
categories = ["web-programming", "network-programming"]
rust-version = "1.88"
exclude = [
"target/**"
]
[dependencies]
reqwest = { version = "0.12", features = ["cookies", "gzip", "brotli", "json", "native-tls"], default-features = false }
http = "1.0"
tokio = { version = "1.42", features = ["full"] }
scraper = "0.24"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.11"
url = "2.5"
boa_engine = "0.21"
rand = "0.8"
once_cell = "1.20"
html-escape = "0.2"
thiserror = "2.0"
log = "0.4"
async-trait = "0.1"
bytes = "1.6"
redb = "2.0"
chrono = { version = "0.4", features = ["serde"] }
[features]
default = []
full = []
[profile.release]
opt-level = 3
lto = true
codegen-units = 1