iroh-car 0.3.0

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

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

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