pow_sha256/Cargo.toml

22 lines
690 B
TOML
Raw Normal View History

[package]
2019-07-23 21:48:43 +05:30
name = "pow_sha256"
2022-08-09 02:18:42 +05:30
version = "0.3.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]
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"
2023-07-04 19:22:10 +05:30
derive_builder = "0.12"
2021-05-02 18:15:00 +05:30
num = { version = "0.4.0", default-features = false, features = ["serde", "num-bigint"]}