pow_sha256/Cargo.toml

20 lines
483 B
TOML
Raw Normal View History

[package]
2019-07-23 21:48:43 +05:30
name = "pow_sha256"
2019-07-25 00:30:31 +05:30
version = "0.2.0"
authors = ["Robert Kornacki <robk@syre.io>"]
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"
repository = "https://github.com/robkorn/pow"
2019-07-29 22:44:49 +05:30
categories = ["algorithms", "cryptography::cryptocurrencies"]
[dependencies]
sha2 = "0.8.0"
serde = { version = "1.0.97", features = ["derive"] }
bincode = "1.1.4"