2019-05-10 03:19:50 +05:30
|
|
|
[package]
|
2023-10-14 23:48:54 +05:30
|
|
|
name = "mcaptcha_pow_sha256"
|
2023-10-29 02:33:36 +05:30
|
|
|
version = "0.5.0"
|
2021-03-06 17:07:28 +05:30
|
|
|
authors = [ "Aravinth Manivannan <realaravinth@bastsense.net>", "Robert Kornacki <robk@syre.io>"]
|
2019-05-10 07:31:11 +05:30
|
|
|
description = """
|
2021-03-06 17:07:28 +05:30
|
|
|
SHA256 PoW on any serializable datatype used in mCaptcha
|
2019-05-10 07:31:11 +05:30
|
|
|
"""
|
2023-10-14 23:40:57 +05:30
|
|
|
edition = "2021"
|
2021-03-06 17:07:28 +05:30
|
|
|
keywords = ["mCaptcha", "PoW", "sha256", "proof-of-work"]
|
|
|
|
readme = "README.md"
|
2019-05-10 03:19:50 +05:30
|
|
|
license = "MIT OR Apache-2.0"
|
2023-10-14 23:48:54 +05:30
|
|
|
repository = "https://git.batsense.net/mCaptcha/mcaptcha_pow_sha256"
|
2021-03-06 17:07:28 +05:30
|
|
|
categories = ["captcha", "algorithms", "cryptography::cryptocurrencies"]
|
2019-07-29 22:44:49 +05:30
|
|
|
|
2019-07-25 00:05:17 +05:30
|
|
|
|
2019-05-10 03:19:50 +05:30
|
|
|
[dependencies]
|
2022-05-06 16:57:47 +05:30
|
|
|
sha2 = "0.10"
|
2021-03-06 09:48:58 +05:30
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
bincode = "1.3"
|
2024-06-04 13:36:03 +05:30
|
|
|
derive_builder = "0.20"
|
2021-05-02 18:15:00 +05:30
|
|
|
num = { version = "0.4.0", default-features = false, features = ["serde", "num-bigint"]}
|
2023-07-04 20:04:52 +05:30
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
incremental = []
|