tmp/Cargo.toml

33 lines
702 B
TOML
Raw Normal View History

2021-02-28 11:06:35 +05:30
[package]
name = "m_captcha"
version = "0.1.0"
authors = ["realaravinth <realaravinth@batsense.net>"]
description = "Convenient abstractions for all things credentials"
keywords = ["credentials", "password"]
homepage = "https://github.com/realaravinth/argon2-creds"
repository = "https://github.com/realaravinth/argon2-creds"
license = "AGPL-3.0"
2021-02-28 11:06:35 +05:30
edition = "2018"
readme = "README.md"
[workspace]
members = [ ".", "browser", "cli" ]
[dependencies]
actix = "0.10"
2021-03-05 21:52:41 +05:30
actix-rt = "1"
2021-02-28 11:06:35 +05:30
serde = "1.0.114"
serde_json = "1"
2021-03-05 21:52:41 +05:30
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-02-28 15:05:39 +05:30
lazy_static = "1.4"
2021-03-05 21:52:41 +05:30
rand = "0.7"
pow_sha256 = { version = "0.1", git = "https://github.com/mcaptcha/pow_sha256" }
2021-03-05 21:52:41 +05:30
async-trait = "0.1.44"