2019-04-15 01:14:30 +00:00
|
|
|
[package]
|
|
|
|
name = "tree_hash"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-08-05 08:06:50 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "benches"
|
|
|
|
harness = false
|
|
|
|
|
2019-04-21 02:12:47 +00:00
|
|
|
[dev-dependencies]
|
2019-08-05 08:06:50 +00:00
|
|
|
criterion = "0.2"
|
2019-07-16 04:40:56 +00:00
|
|
|
rand = "0.7"
|
2019-04-21 02:12:47 +00:00
|
|
|
tree_hash_derive = { path = "../tree_hash_derive" }
|
2019-08-05 08:06:50 +00:00
|
|
|
types = { path = "../../types" }
|
2019-04-21 02:12:47 +00:00
|
|
|
|
2019-04-15 01:14:30 +00:00
|
|
|
[dependencies]
|
2019-08-06 04:41:42 +00:00
|
|
|
ethereum-types = "0.6"
|
2019-04-15 01:14:30 +00:00
|
|
|
hashing = { path = "../hashing" }
|
|
|
|
int_to_bytes = { path = "../int_to_bytes" }
|
2019-07-16 04:40:56 +00:00
|
|
|
lazy_static = "0.1"
|