Irkle

A blake3-based merkle (hash) tree implementation for superfast trees ⚡

Example

```rust use irkle::Tree;

fn main() { println!("{:#?}", Tree::new(vec!["hello", "there"])); } ```

Installation

Simply add the following to your Cargo.toml file:

toml [depedencies] irkle = "0.1"