pow_sha256/Cargo.toml

26 lines
756 B
TOML

[package]
name = "mcaptcha_pow_sha256"
version = "0.5.0"
authors = [ "Aravinth Manivannan <realaravinth@bastsense.net>", "Robert Kornacki <robk@syre.io>"]
description = """
SHA256 PoW on any serializable datatype used in mCaptcha
"""
edition = "2021"
keywords = ["mCaptcha", "PoW", "sha256", "proof-of-work"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://git.batsense.net/mCaptcha/mcaptcha_pow_sha256"
categories = ["captcha", "algorithms", "cryptography::cryptocurrencies"]
[dependencies]
sha2 = "0.10"
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"
derive_builder = "0.12"
num = { version = "0.4.0", default-features = false, features = ["serde", "num-bigint"]}
[features]
default = []
incremental = []