cambrian / accumulator

Cryptographic accumulators in Rust.
https://cambrian.github.io/accumulator
MIT License
133 stars 34 forks source link

Fix broken stuff from name change. #10

Closed whaatt closed 5 years ago

whaatt commented 5 years ago

Runs cargo build/test/bench without errors now. Also fixed README.

Other main change is in lib.rs: Made mod accumulator and mod vector_commitment private and adding pub use accumulator::* and pub use vector_commitment::* to avoid constructions like accumulator::accumulator::Accumulator (instead, simply accumulator::Accumulator)