mcaptcha-api-rs/Cargo.toml

25 lines
752 B
TOML
Raw Normal View History

[package]
name = "mcaptcha-api-rs"
version = "0.1.0"
edition = "2021"
2024-01-02 23:55:11 +05:30
authors = ["realaravinth <realaravinth@batsense.net>"]
description = "HTTP Library to interact with mCaptcha API"
keywords = ["DDoS", "mcaptcha", "captcha", "pow"]
homepage = "https://mcaptcha.org"
repository = "https://git.batsense.net/mCaptcha/mcaptcha-api-rs"
documentation = "https://docs.rs/mcaptcha-api-rs"
license = "MIT OR Apache-2.0"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.23", features = ["json", "gzip", "native-tls"] }
serde = { version = "1.0.194", features = ["derive"] }
url = "2.5.0"
[dev-dependencies]
actix-rt = "2.9.0"
2024-01-02 20:10:06 +05:30
dotenv = "0.15.0"