smtree/lib.rs
1// Copyright (c) Facebook, Inc. and its affiliates.
2//
3// This source code is licensed under the MIT license found in the
4// LICENSE file in the root directory of this source tree.
5
6//! A library supplying paddable sparse Merkle tree.
7
8pub mod error;
9pub mod index;
10pub mod node_template;
11pub mod pad_secret;
12pub mod proof;
13pub mod traits;
14pub mod tree;
15pub mod utils;
16
17#[cfg(test)]
18mod tests;