cd7b218e51
https://www.reddit.com/r/rust/comments/bn48nz/pow_sha256_based_proofs_of_work_over_typed_data/en2bcxx?utm_source=share&utm_medium=web2x
19 lines
498 B
TOML
19 lines
498 B
TOML
[package]
|
|
name = "pow"
|
|
version = "0.1.3"
|
|
authors = ["Andrew Dirksen <andrew@dirksen.com>"]
|
|
description = """
|
|
Generate or verify sha256 based proofs of work over arbitrary typed data.
|
|
"""
|
|
edition = "2018"
|
|
documentation = "https://docs.rs/pow"
|
|
keywords = ["pwset", "powtag", "tag"]
|
|
readme = "readme.md"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/bddap/pow"
|
|
categories = [] # pr me!
|
|
|
|
[dependencies]
|
|
sha2 = "0.8.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
bincode = "1.1.3"
|