88c6d15c32
* Add initial work on padding efficent merkle roots * Improve merklize_padded * Improve tree_hash crate -- fix bugs, docs * Update codebase for tree_hash API change * Remove dbg statements, fix import error * Fix clippy lints, doc error * Tidy tree hash comments * Increase tree_hash max tree height * Fix PR review comments * Fix typos * Fix cache access off-by-one in tree hash * Set max tree depth to 48 (from 64)
16 lines
334 B
TOML
16 lines
334 B
TOML
[package]
|
|
name = "tree_hash"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7"
|
|
tree_hash_derive = { path = "../tree_hash_derive" }
|
|
|
|
[dependencies]
|
|
ethereum-types = "0.5"
|
|
hashing = { path = "../hashing" }
|
|
int_to_bytes = { path = "../int_to_bytes" }
|
|
lazy_static = "0.1"
|