Persistent Merkle Tree in Rust
Go to file
Magamedrasul Ibragimov 8c4abe6fa1 fix: change usize to u64 for compatibility 2022-12-09 16:35:21 +03:00
.github/workflows chore: update workflow (add caching) 2022-12-05 14:17:52 +03:00
src fix: change usize to u64 for compatibility 2022-12-09 16:35:21 +03:00
tests feat: change Hasher API 2022-11-30 21:50:10 +03:00
.gitignore init: add rust lib template 2022-10-11 19:48:08 +03:00
Cargo.toml feat: add batch_insert function 2022-12-02 20:53:03 +03:00
LICENSE.md chore: add LICENSE 2022-10-19 15:26:59 +03:00
README.md docs: test commit to check actions 2022-12-05 14:26:12 +03:00
pmtree.png docs: customize README 2022-10-30 23:35:36 +03:00

README.md

pmtree

Persistent Merkle Tree (optimized & sparse & fixed-size) in Rust

How to use

[dependencies]
pmtree = { git = "https://github.com/Rate-Limiting-Nullifier/pmtree" }

To use batch insertions you must enable batch_insert feature:

[dependencies]
pmtree = { git = "https://github.com/Rate-Limiting-Nullifier/pmtree", features = ["batch_insert"] }

Clone & Build

git clone git@github.com:Rate-Limiting-Nullifier/pmtree.git && cd pmtree
cargo build --release

Run tests

cargo test --release

Docs

cargo docs --open