tmp/Cargo.toml

30 lines
637 B
TOML
Raw Normal View History

2021-02-28 11:06:35 +05:30
[package]
2021-06-01 16:41:49 +05:30
name = "libmcaptcha"
2021-04-02 11:05:33 +05:30
version = "0.1.3"
2021-02-28 11:06:35 +05:30
authors = ["realaravinth <realaravinth@batsense.net>"]
2021-06-01 16:47:41 +05:30
description = "core of mCaptcha captcha system"
keywords = ["DDoS", "mcaptcha", "captcha", "pow"]
homepage = "https://mcaptcha.org"
repository = "https://github.com/realaravinth/libmcaptcha"
license = "AGPL-3.0"
2021-02-28 11:06:35 +05:30
edition = "2018"
readme = "README.md"
[dependencies]
2021-04-02 11:05:33 +05:30
actix = "0.10"
2021-03-05 21:52:41 +05:30
2021-02-28 11:06:35 +05:30
serde = "1.0.114"
serde_json = "1"
2021-03-05 21:52:41 +05:30
pretty_env_logger = "0.4"
log = "0.4"
2021-02-28 15:05:39 +05:30
derive_builder = "0.9"
derive_more = "0.99"
2021-03-05 21:52:41 +05:30
2021-03-07 19:54:41 +05:30
rand = "0.8"
2021-04-02 11:05:33 +05:30
pow_sha256 = { version = "0.2.1", git = "https://github.com/mcaptcha/pow_sha256" }
2021-03-05 21:52:41 +05:30
2021-03-07 19:54:41 +05:30
[dev-dependencies]
2021-04-02 11:17:05 +05:30
actix-rt = "1"