multihash 0.19.5

Implementation of the multihash format
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! No-std I/O utilities for the multihash crate.
//!
//! This module provides a minimal compatibility layer for I/O operations in `no_std` environments.
//! Source code is ported and adapted from the [`core2`](https://docs.rs/crate/core2/0.4.0/source/) crate.

mod error;
mod impls;
mod traits;

pub use error::Error;
pub use traits::{Read, Write};