pow_sha256/Cargo.toml

22 lines
689 B
TOML
Raw Normal View History

[package]
2019-07-23 21:48:43 +05:30
name = "pow_sha256"
2021-03-31 17:40:15 +05:30
version = "0.2.1"
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
"""
edition = "2018"
2021-03-06 17:07:28 +05:30
keywords = ["mCaptcha", "PoW", "sha256", "proof-of-work"]
readme = "README.md"
license = "MIT OR Apache-2.0"
2021-03-06 10:06:29 +05:30
repository = "https://github.com/mcaptcha/pow_sha256"
2021-03-06 17:07:28 +05:30
categories = ["captcha", "algorithms", "cryptography::cryptocurrencies"]
2019-07-29 22:44:49 +05:30
[dependencies]
2021-03-06 09:48:58 +05:30
sha2 = "0.9"
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"
2021-04-01 22:48:40 +05:30
derive_builder = "0.10"
2021-05-02 18:15:00 +05:30
num = { version = "0.4.0", default-features = false, features = ["serde", "num-bigint"]}