24 lines
752 B
TOML
24 lines
752 B
TOML
[package]
|
|
name = "mcaptcha-api-rs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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"
|
|
dotenv = "0.15.0"
|