rs-car

Rust implementation of the CAR specifications, both CARv1 and CARv2.

Usage

```rs let mut file = asyncstd::fs::File::open(carfilepath).await.unwrap(); let blockstream = decodecarasyncstream(&mut file, true).await.unwrap();

while let Some(item) = block_stream.next().await { let (cid, block) = item.unwrap(); // Do something with CAR block } ```