Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.13 KB

File metadata and controls

32 lines (20 loc) · 1.13 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.1.2 - 2026-04-16

Bug Fixes

  • (encode) Reject subtrees whose nested prefixes exceed the key length
  • (path) Cap split_point comparison at self's remaining bits

0.1.1 - 2026-04-16

Refactor

  • Resolve clippy warnings across the crate

[0.1.0] - 2026-04-16

Initial release on crates.io.

Features

  • Merkle-ized binary trie with MVCC concurrency (multi-reader, single-writer).
  • Subtree accumulators with inclusion and exclusion proofs.
  • no_std support (RISC0 zkVM compatible) via default-features = false.
  • Optional wasm bindings behind the wasm feature.
  • Optional sqlite-backed hash index sidecar behind the hash-idx feature for fast prove and compute_root on large trees.
  • Snapshot iteration and rollback.