Move the BridgeTree type to the root module.

This commit is contained in:
Kris Nuttycombe 2022-07-21 22:59:23 -06:00
parent 6e97389d1b
commit adf9ba26e4
4 changed files with 1409 additions and 1416 deletions

View File

@ -1,15 +1,15 @@
[package]
name = "incrementalmerkletree"
version = "0.3.0"
name = "bridgetree"
version = "0.1.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Kris Nuttycombe <kris@nutty.land>",
"Sean Bowe <ewillbefull@gmail.com>",
]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Implementation of an Incremental Merkle Tree"
homepage = "https://github.com/zcash/incrementalmerkletree"
repository = "https://github.com/zcash/incrementalmerkletree"
description = "A space-efficient Merkle tree with witnessing of marked leaves, checkpointing & state restoration."
homepage = "https://github.com/zcash/bridgetree"
repository = "https://github.com/zcash/bridgetree"
categories = ["algorithms", "data-structures"]
[dependencies]

File diff suppressed because it is too large Load Diff

1422
src/lib.rs

File diff suppressed because it is too large Load Diff

View File

@ -244,9 +244,9 @@ pub(crate) mod tests {
use std::fmt::Debug;
use crate::{
bridgetree::BridgeTree,
hashing::Hashable,
position::{Level, Position},
BridgeTree,
};
use super::{