xsmt

Crates.ioxsmt
lib.rsxsmt
version3.0.7
sourcesrc
created_at2022-06-02 07:58:56.249928
updated_at2022-06-17 07:41:05.174958
descriptionSparse merkle tree implement in rust
homepage
repositoryhttps://github.com/rust-util-collections/xSMT
max_upload_size
id598722
size120,186
漢 (ccmlm)

documentation

README

GitHub top language Latest Version Rust Documentation Minimum rustc version

xSMT

An implementation of 'Sparse Merkle Tree' with versioned features.

Examples

type Smt = xsmt::VsSmt<Vec<u8>>;
let smt = Smt::default();
...

type Smt = xsmt::VsSmt2<Vec<u8>, Vec<u8>>;
let smt = Smt::default();
...

SEE ALSO:

  • VSDB, a database with powerful version management capabilities
  • sparse_merkle_tree, the original upstream crate
Commit count: 174

cargo fmt