Crates.io | zipfs |
lib.rs | zipfs |
version | 0.0.2 |
source | src |
created_at | 2023-01-03 06:07:25.199652 |
updated_at | 2023-09-28 16:04:02.961032 |
description | An async filesystem on top of Zip files. |
homepage | |
repository | https://github.com/vivekpanyam/ZipFS |
max_upload_size | |
id | 749936 |
size | 34,806 |
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.
[dependencies]
lunchbox = "0.1"
zipfs = "0.0.1"
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.