merkle-log 0.0.9

An implementation of the "Merkle Tree-Structured Log" defined in the paper "Transparent Logs for Skeptical Clients." https://research.swtch.com/tlog
Documentation
[dependencies.borsh]
default-features = false
features = ["derive"]
optional = true
version = "1.0.0-alpha.5"

[dependencies.core2]
default-features = false
version = "0.4"

[dependencies.digest]
default-features = false
optional = true
version = "0.10"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0"

[dependencies.thiserror]
default-features = false
optional = true
version = "1.0"

[dev-dependencies.digest]
default-features = false
version = "0.10"

[dev-dependencies.sha2]
version = "0.10"

[features]
default = ["std"]
std = ["borsh?/std", "core2/std", "digest?/std", "serde?/std", "thiserror"]

[package]
authors = ["sunny-g <sunny.gonna@gmail.com>"]
categories = ["cryptography", "data-structures"]
description = 'An implementation of the "Merkle Tree-Structured Log" defined in the paper "Transparent Logs for Skeptical Clients." https://research.swtch.com/tlog'
documentation = "https://docs.rs/merkle-log"
edition = "2018"
keywords = ["merkle-tree", "crypto"]
license = "MIT OR Apache-2.0"
name = "merkle-log"
readme = "README.md"
repository = "https://github.com/sunny-g/merkle-log"
rust-version = "1.60"
version = "0.0.9"

[package.metadata.docs.rs]
features = ["std", "digest"]