rs_car_ipfs/
lib.rs

1//! Wrapper for [rs-car](https://crates.io/crates/rs-car) to read files from IPFS trustless gateways with an async API.
2//!
3//! # Usage
4//!
5//! - To read a single file buffering the block dag [`single_file::read_single_file_buffer`]
6//! - To read a single file without buffering the block dag [`single_file::read_single_file_seek`]
7
8mod pb;
9pub mod single_file;
10
11pub use rs_car::Cid;