[package]
edition = "2024"
rust-version = "1.85"
name = "emt"
version = "0.1.0"
authors = ["Timothy DeHerrera <tim@nrdxp.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Epoch Merkle Tree — the EMT instantiated at k=2 with no prefix"
documentation = "https://docs.rs/emt"
readme = "README.md"
keywords = [
"merkle",
"proof",
"log",
"tree",
"cryptography",
]
categories = [
"algorithms",
"cryptography",
"data-structures",
]
license-file = "LICENSE"
repository = "https://github.com/Cyphrme/eml"
resolver = "2"
[lib]
name = "emt"
path = "src/lib.rs"
[dependencies.polydigest]
version = "0.1"
[dependencies.sha2]
version = "0.10"