captchaforge 0.2.39

Captcha detection and solving for Firefox and BiDi-driven browsers. Detection, vendor solver scaffolding, trusted cross-origin click delivery into nested OOPIFs, and stealth personas are implemented and tested; broad live-vendor solve rates are not yet benchmarked.
Documentation
# cargo-deny configuration. Run `cargo deny check` to enforce.

#

# Goals:

# 1. Block crates with known security advisories.

# 2. Block crates without an OSI-approved permissive licence.

# 3. Block multiple-version-of-the-same-crate where it materially

#    inflates binary size; permit otherwise (Rust ecosystem

#    realistically has many transitive duplicates).

# 4. Block sources outside crates.io + the captchaforge GitHub org.



[graph]

all-features = false

no-default-features = false



[advisories]

db-path = "~/.cargo/advisory-db"

db-urls = ["https://github.com/rustsec/advisory-db"]

yanked = "warn"

ignore = []



[licenses]

confidence-threshold = 0.93

allow = [

    "MIT",

    "Apache-2.0",

    "Apache-2.0 WITH LLVM-exception",

    "BSD-2-Clause",

    "BSD-3-Clause",

    "ISC",

    "Unicode-DFS-2016",

    "Unicode-3.0",

    "Zlib",

    "MPL-2.0",

    "CC0-1.0",

    "OpenSSL",

]

exceptions = []



[bans]

multiple-versions = "warn"

wildcards = "deny"

highlight = "all"



[sources]

unknown-registry = "deny"

unknown-git = "deny"

allow-registry = ["https://github.com/rust-lang/crates.io-index"]

allow-git = []