//! # cid
//!
//! Implementation of [cid](https://github.com/ipld/cid) in Rust.
pub use Cid as CidGeneric;
pub use ;
pub use Version;
pub use multibase;
pub use multihash;
/// A Cid that contains a multihash with an allocated size of 512 bits.
///
/// This is the same digest size the default multihash code table has.
///
/// If you need a CID that is generic over its digest size, use [`CidGeneric`] instead.
pub type Cid = ;