noosphere-car 0.2.0

Streaming CAR format support for Noosphere
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 varint;
mod writer;

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