cita_trie 0.1.2

Modified Patricia Tree (aka Trie).
Documentation

CITA-Trie

Rust implementation of the Modified Patricia Tree (aka Trie)

The implementation is strongly inspired by go-ethereum trie

Example

···rust use cita_trie::trie::{Trie, PatriciaTrie}; use cita_trie::db::{DB, MemoryDB}; use cita_trie::codec::{NodeCodec, RLPNodeCodec};

fn main() {

}