pow_sha256/Cargo.toml
Robert Kornacki f85cc9388f Updates tests
2019-07-22 15:45:30 -04:00

17 lines
450 B
TOML

[package]
name = "PoW-SHA256"
version = "0.1.0"
authors = ["Robert Kornacki <robk@syre.io>"]
description = """
SHA256 PoW on any serializable datatype.
"""
edition = "2018"
keywords = ["PoW", "sha256", "proof-of-work"]
readme = "readme.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/robkorn/pow"
categories = ["pow", "sha256"]
[dependencies]
sha2 = "0.8.0"
serde = { version = "1.0.97", features = ["derive"] }
bincode = "1.1.4"