A blake3-based merkle (hash) tree implementation for superfast trees ⚡
```rust use irkle::Tree;
fn main() { println!("{:#?}", Tree::new(vec!["hello", "there"])); } ```
Simply add the following to your Cargo.toml
file:
toml
[depedencies]
irkle = "0.1"