// Copyright (c) 2018-present, Facebook, Inc. // All Rights Reserved. // // This software may be used and distributed according to the terms of the // GNU General Public License version 2 or any later version. //! Code for operations on blobrepos that are useful but not essential. #![deny(warnings)] mod bonsai; mod changeset; mod errors; pub use crate::bonsai::{BonsaiMFVerify, BonsaiMFVerifyDifference, BonsaiMFVerifyResult}; pub use crate::changeset::{visit_changesets, ChangesetVisitor}; pub use crate::errors::ErrorKind;