First little bit of trie done.

This commit is contained in:
Gav Wood 2015-11-29 01:39:39 +01:00
parent d423a1d276
commit 5b57629e6d
2 changed files with 5 additions and 0 deletions

View File

@ -16,3 +16,4 @@ rand = "0.*"
tiny-keccak = "0.3"
rocksdb = "0.2.1"
num = "0.1"
lazy_static = "0.1.*"

View File

@ -10,6 +10,9 @@ extern crate tiny_keccak;
extern crate num;
#[macro_use]
extern crate log;
#[macro_use]
extern crate lazy_static;
#[macro_use]
pub mod macros;
@ -27,6 +30,7 @@ pub mod overlaydb;
pub mod math;
//pub mod filter;
pub mod chainfilter;
pub mod trie;
//pub mod network;