Skip to content

VivekPanyam/ZipFS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

An async filesystem on top of Zip files in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages