Remove tree hashing from ssz crate

This commit is contained in:
Paul Hauner
2019-04-16 12:29:39 +10:00
parent 024b9e315a
commit 3eaa06d758
9 changed files with 128 additions and 423 deletions

View File

@@ -12,17 +12,12 @@ extern crate ethereum_types;
pub mod decode;
pub mod encode;
mod signed_root;
pub mod tree_hash;
mod impl_decode;
mod impl_encode;
mod impl_tree_hash;
pub use crate::decode::{decode, decode_ssz_list, Decodable, DecodeError};
pub use crate::encode::{Encodable, SszStream};
pub use crate::signed_root::SignedRoot;
pub use crate::tree_hash::{merkle_hash, TreeHash};
pub use hashing::hash;