pow_sha256/Cargo.toml

18 lines
443 B
TOML
Raw Normal View History

[package]
name = "pow"
2019-05-11 02:58:06 +05:30
version = "0.1.1"
authors = ["Andrew Dirksen <andrew@dirksen.com>"]
2019-05-10 07:31:11 +05:30
description = """
2019-05-11 02:58:06 +05:30
Generate or verify sha256 based proofs of work over arbitrary typed data.
2019-05-10 07:31:11 +05:30
"""
edition = "2018"
2019-05-11 02:58:06 +05:30
documentation = "https://docs.rs/pow"
tags = ["proof of work", "pw set", "powtag", "tag"]
readme = "readme.md"
license = "MIT OR Apache-2.0"
[dependencies]
sha2 = "0.8.0"
serde = { version = "1", features = ["derive"] }
bincode = "1.1.3"