[package]
edition = "2024"
rust-version = "1.88"
name = "omnicaptcha"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Facade crate for the captcha-sdk server-side CAPTCHA API"
documentation = "https://docs.rs/omnicaptcha"
readme = "README.md"
keywords = [
"captcha",
"turnstile",
"hcaptcha",
"recaptcha",
"verification",
]
categories = [
"web-programming",
"api-bindings",
"authentication",
]
license = "MIT"
repository = "https://github.com/salasebas/captcha-sdk"
[features]
all-providers = ["captcha-sdk/all-providers"]
altcha = ["captcha-sdk/altcha"]
captchafox = ["captcha-sdk/captchafox"]
default = []
friendlycaptcha = ["captcha-sdk/friendlycaptcha"]
hcaptcha = ["captcha-sdk/hcaptcha"]
mtcaptcha = ["captcha-sdk/mtcaptcha"]
procaptcha = ["captcha-sdk/procaptcha"]
prosopo = ["captcha-sdk/prosopo"]
recaptcha = ["captcha-sdk/recaptcha"]
turnstile = ["captcha-sdk/turnstile"]
[lib]
name = "omnicaptcha"
path = "src/lib.rs"
[[test]]
name = "reexports"
path = "tests/reexports.rs"
[dependencies.captcha-sdk]
version = "0.0.1"
default-features = false
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"