1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! A content-addressable identity for a software artifact.
mod builder;
mod error;
mod gitoid;
mod hash;
mod hash_algorithm;
mod object_type;
#[cfg(test)]
mod tests;
pub use crate::builder::*;
pub use crate::error::*;
pub use crate::gitoid::*;
pub use crate::hash::*;
pub use crate::hash_algorithm::*;
pub use crate::object_type::*;