hcaptcha 3.2.1

hCaptcha client response verification. Validate the hCaptcha response submitted from to your server from the client.
Documentation
// SPDX-FileCopyrightText: 2022 jerusdp
//
// SPDX-License-Identifier: MIT OR Apache-2.0

mod client_response;
mod remoteip;
#[cfg(not(feature = "ext"))]
mod secret;
#[cfg(feature = "ext")]
mod secret_ext;
mod sitekey;

pub(crate) use client_response::ClientResponse;
pub(crate) use remoteip::Remoteip;
#[cfg(not(feature = "ext"))]
pub(crate) use secret::Secret;
#[cfg(feature = "ext")]
pub(crate) use secret_ext::Secret;
pub(crate) use sitekey::Sitekey;