Persistent Merkle Tree in Rust
Go to file
Magamedrasul Ibragimov 20a436781b feat: add test with poseidon 2022-11-16 19:21:58 +03:00
.github/workflows ops: add basic actions for build-test-fmt check 2022-10-11 19:58:16 +03:00
src refactor: update leaf_index function 2022-11-08 17:34:50 +03:00
tests feat: add test with poseidon 2022-11-16 19:21:58 +03:00
.gitignore init: add rust lib template 2022-10-11 19:48:08 +03:00
Cargo.toml feat: add test with poseidon 2022-11-16 19:21:58 +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