A generic implementation of the Base-16 Modified Merkle Tree ("Trie") data structure, provided under the Apache2 license.
Trie Hash alone is able to be used in no_std
builds by disabling its (default)
std
feature.
Implementation is in subtrie
crate.
Testing in reference-trie
crate and trie-db-test
.
In the spirit of all things Rust, this aims to be reliable, secure, and high performance.
Used in the Substrate project. If you use this crate and would your project listed here, please contact us.
Building is done through cargo, as you'd expect.
cargo build --all
cargo test --all
cargo bench --all
cargo build --no-default-features