zipfs

Crates.iozipfs
lib.rszipfs
version0.0.2
sourcesrc
created_at2023-01-03 06:07:25.199652
updated_at2023-09-28 16:04:02.961032
descriptionAn async filesystem on top of Zip files.
homepage
repositoryhttps://github.com/vivekpanyam/ZipFS
max_upload_size
id749936
size34,806
Vivek Panyam (VivekPanyam)

documentation

README

github crates.io docs.rs

An async filesystem on top of Zip files.

This library is built on top of Lunchbox, an async virtual filesystem interface.

See the lunchbox docs for usage details.

Getting started

[dependencies]
lunchbox = "0.1"
zipfs = "0.0.1"

Step 1: Load a filesystem

use std::path::PathBuf;
use zipfs::ZipFS;

let zipfs = ZipFS::new(PathBuf::from("/some/path/to/a/file.zip"));

// Use it like any other lunchbox filesystem. See the lunchbox docs for more details.
Commit count: 19

cargo fmt