iroh-car 0.5.1

Implementation the car files for iroh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Implementation of the [car](https://ipld.io/specs/transport/car/) format.

mod error;
mod header;
mod reader;
mod util;
mod writer;

pub use crate::error::Error;
pub use crate::header::CarHeader;
pub use crate::reader::CarReader;
pub use crate::writer::CarWriter;