sapling-dag-types 0.1.0

A subset of types used by sapling-dag
Documentation
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

//! A subset of types that are related to wire protocols and used by the dag crate.

pub mod clone;
pub mod id;
pub mod location;
pub mod segment;

pub use clone::CloneData;
pub use id::Bytes;
pub use id::Group;
pub use id::Id;
pub use id::IdIter;
pub use id::Vertex;
pub use location::Location;
pub use segment::FlatSegment;
pub use segment::PreparedFlatSegments;