-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (24 loc) · 881 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "recaptcha-verify"
version = "0.1.5"
edition = "2021"
authors = ["Ivan Ganev <iganev@cytec.bg>"]
description = "Recaptcha verification helper"
keywords = ["recaptcha", "verify", "helper"]
categories = ["web-programming", "api-bindings"]
homepage = "https://github.com/iganev/recaptcha-verify"
repository = "https://github.com/iganev/recaptcha-verify"
documentation = "https://docs.rs/crate/recaptcha-verify/"
readme = "README.md"
license = "MIT"
[features]
default = ["rustls-tls"]
default-tls = ["reqwest/default-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
[dependencies]
reqwest = { version = "^0.12", default-features = false, features = ["json"] }
serde = { version = "^1", features = ["derive"] }
serde_json = { version = "^1" }
[dev-dependencies]
tokio = { version = "^1.36", features = ["macros", "rt-multi-thread"] }