hcaptcha 3.2.6

hCaptcha client-side response verification: it validates the hCaptcha token your server receives from the client before trusting the submission.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-FileCopyrightText: 2022 jerusdp
//
// SPDX-License-Identifier: MIT OR Apache-2.0

use thiserror::Error;
#[derive(Error, Debug)]
pub enum ContactError {
    #[error("{0}")]
    Hcaptcha(#[from] hcaptcha::Error),
    #[error("{0}")]
    Json(#[from] serde_json::Error),
}