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)
Runs
cargo build/test/bench
without errors now. Also fixedREADME
.Other main change is in
lib.rs
: Mademod accumulator
andmod vector_commitment
private and addingpub use accumulator::*
andpub use vector_commitment::*
to avoid constructions likeaccumulator::accumulator::Accumulator
(instead, simplyaccumulator::Accumulator
)