1
2
3
4
5
6
7
8
9
10
11
12
//! IPLD core
//!
//! This crate provides core types for interoperating with [IPLD].
//!
//! [IPLD]: https://ipld.io/
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub mod ipld;
#[cfg(feature = "serde")]
pub mod serde;