car_nostd/lib.rs
1//! Implementation of the [car](https://ipld.io/specs/transport/car/) format.
2//! This is a fork of https://github.com/n0-computer/iroh-car that runs in no_std environments.
3
4#![no_std]
5
6extern crate alloc;
7
8mod error;
9mod header;
10mod reader;
11mod util;
12mod writer;
13
14pub use crate::error::Error;
15pub use crate::header::CarHeader;
16pub use crate::reader::CarReader;
17pub use crate::writer::CarWriter;