pow_sha256/Cargo.toml

20 lines
534 B
TOML
Raw Normal View History

[package]
2019-07-23 21:48:43 +05:30
name = "pow_sha256"
2021-03-06 10:06:29 +05:30
version = "0.1.0"
authors = ["Robert Kornacki <robk@syre.io>, Aravinth Manivannan <realaravinth@bastsense.net>"]
2019-05-10 07:31:11 +05:30
description = """
SHA256 PoW on any serializable datatype.
2019-05-10 07:31:11 +05:30
"""
edition = "2018"
keywords = ["PoW", "sha256", "proof-of-work"]
2019-05-11 02:58:06 +05:30
readme = "readme.md"
license = "MIT OR Apache-2.0"
2021-03-06 10:06:29 +05:30
repository = "https://github.com/mcaptcha/pow_sha256"
2019-07-29 22:44:49 +05:30
categories = ["algorithms", "cryptography::cryptocurrencies"]
[dependencies]
2021-03-06 09:48:58 +05:30
sha2 = "0.9"
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"