[package]
edition = "2024"
rust-version = "1.85"
name = "eml"
version = "0.11.0"
authors = ["Timothy DeHerrera <tim@nrdxp.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Epoch Merkle Log: the EML library instantiated at k=2, no prefix"
documentation = "https://docs.rs/eml"
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 = "eml"
path = "src/lib.rs"
[[test]]
name = "complexity"
path = "tests/complexity.rs"
[[test]]
name = "consistency_reshape"
path = "tests/consistency_reshape.rs"
[[test]]
name = "fault_injection"
path = "tests/fault_injection.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[dependencies.polydigest]
version = "0.1"
[dev-dependencies.big_o]
version = "0.1"
[dev-dependencies.bigoish]
version = "0.1"
[dev-dependencies.cpu-time]
version = "1"
[dev-dependencies.polydigest]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.smol]
version = "2.0"