[package]
edition = "2021"
name = "continuity-receipt"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Independent Rust verifier for continuity-receipt/0.1-0.3 bundles (the Python implementation remains the reference)"
homepage = "https://github.com/lbailey94/continuity-receipt"
readme = "README.md"
keywords = [
"continuity",
"provenance",
"receipts",
"verification",
"ed25519",
]
categories = [
"cryptography",
"encoding",
]
license = "Apache-2.0"
repository = "https://github.com/lbailey94/continuity-receipt"
[lib]
name = "continuity_receipt"
path = "src/lib.rs"
[[bin]]
name = "continuity-receipt-anchor"
path = "src/bin/continuity-receipt-anchor.rs"
[[bin]]
name = "continuity-receipt-disclose"
path = "src/bin/continuity-receipt-disclose.rs"
[[bin]]
name = "continuity-receipt-verify"
path = "src/bin/continuity-receipt-verify.rs"
[[test]]
name = "anchor"
path = "tests/anchor.rs"
[[test]]
name = "disclose"
path = "tests/disclose.rs"
[[test]]
name = "fuzz_corpus"
path = "tests/fuzz_corpus.rs"
[[test]]
name = "vectors"
path = "tests/vectors.rs"
[dependencies.base64]
version = "0.22"
[dependencies.bs58]
version = "0.5"
[dependencies.ed25519-dalek]
version = "2"
[dependencies.getrandom]
version = "0.2"
[dependencies.ripemd]
version = "0.1"
[dependencies.serde_json]
version = "1"
features = ["arbitrary_precision"]
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"