Add initial MerkleTree implementation, which is a wrapper on top of Plonky2's MerkleTree, with the idea that the future iteration will replace it by the MerkleTree specified at https://0xparc.github.io/pod2/merkletree.html .
16 lines
269 B
TOML
16 lines
269 B
TOML
[package]
|
|
name = "pod2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "pod2"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
plonky2 = { git = "https://github.com/0xPolygonZero/plonky2" }
|
|
hex = "0.4.3"
|
|
itertools = "0.14.0"
|
|
strum = "0.26"
|
|
strum_macros = "0.26"
|
|
anyhow = "1.0.56"
|