Persistent Merkle Tree in Rust
Go to file
Magamedrasul Ibragimov 41a4533272 feat: add API for Merkle proof struct 2022-11-08 15:00:38 +03:00
.github/workflows ops: add basic actions for build-test-fmt check 2022-10-11 19:58:16 +03:00
src feat: add API for Merkle proof struct 2022-11-08 15:00:38 +03:00
tests test: update tests with Error handling 2022-11-06 15:25:19 +03:00
.gitignore init: add rust lib template 2022-10-11 19:48:08 +03:00
Cargo.toml test: add test for persistent sled_db 2022-11-02 13:45:49 +03:00
LICENSE.md chore: add LICENSE 2022-10-19 15:26:59 +03:00
README.md docs: update info about pmtree in README 2022-10-30 23:49:24 +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" }

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