2019-05-10 03:19:50 +05:30
|
|
|
[package]
|
2019-07-23 21:48:43 +05:30
|
|
|
name = "pow_sha256"
|
2019-07-25 00:30:31 +05:30
|
|
|
version = "0.2.0"
|
2019-07-22 23:24:13 +05:30
|
|
|
authors = ["Robert Kornacki <robk@syre.io>"]
|
2019-05-10 07:31:11 +05:30
|
|
|
description = """
|
2019-07-22 23:24:13 +05:30
|
|
|
SHA256 PoW on any serializable datatype.
|
2019-05-10 07:31:11 +05:30
|
|
|
"""
|
2019-05-10 03:19:50 +05:30
|
|
|
edition = "2018"
|
2019-07-22 23:24:13 +05:30
|
|
|
keywords = ["PoW", "sha256", "proof-of-work"]
|
2019-05-11 02:58:06 +05:30
|
|
|
readme = "readme.md"
|
2019-05-10 03:19:50 +05:30
|
|
|
license = "MIT OR Apache-2.0"
|
2019-07-22 23:24:13 +05:30
|
|
|
repository = "https://github.com/robkorn/pow"
|
2019-07-24 20:54:39 +05:30
|
|
|
categories = ["algorithms"]
|
2019-07-25 00:05:17 +05:30
|
|
|
|
2019-05-10 03:19:50 +05:30
|
|
|
[dependencies]
|
|
|
|
sha2 = "0.8.0"
|
2019-07-23 00:34:45 +05:30
|
|
|
serde = { version = "1.0.97", features = ["derive"] }
|
2019-07-22 23:24:13 +05:30
|
|
|
bincode = "1.1.4"
|