irkle 0.1.0-pre.1

A blake3-based merkle (hash) tree implementation for superfast trees ⚡
Documentation
  • Coverage
  • 63.16%
    12 out of 19 items documented1 out of 11 items with examples
  • Size
  • Source code size: 16.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.71 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Owez/irkle
    2 0 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Owez

Irkle

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

Example

use irkle::Tree;

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

Installation

Simply add the following to your Cargo.toml file:

[depedencies]
irkle = "0.1"