w3s 0.2.10

A Rust crate to the easily upload file or directory to Web3.Storage with optional encryption and compression
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! This module is from [https://github.com/n0-computer/iroh](https://github.com/n0-computer/iroh).
//! Since this module is not published to crate.io, I can only import it here and did a little modification.
//! 
//! The writer part has been changed to sync io.
//! 
//! 
//! Implementation of the [car](https://ipld.io/specs/transport/car/) format.

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

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