zarrs_zip

Crates.iozarrs_zip
lib.rszarrs_zip
version0.3.0
created_at2024-09-15 09:36:16.648161+00
updated_at2025-09-17 23:15:35.712847+00
descriptionA storage adapter for zip files for the zarrs crate
homepagehttps://zarrs.dev
repositoryhttps://github.com/zarrs/zarrs/tree/main/zarrs_zip
max_upload_size
id1375347
size79,298
Lachlan Deakin (LDeakin)

documentation

https://docs.rs/zarrs_zip

README

zarrs_zip

Latest Version zarrs_zip documentation msrv build codecov

A storage adapter for zip files for the zarrs Rust crate.

use zarrs_storage::StoreKey;
use zarrs_filesystem::FilesystemStore;
use zarrs_zip::ZipStorageAdapter;

let fs_root = PathBuf::from("/path/to/a/directory");
let fs_store = Arc::new(FilesystemStore::new(&fs_root)?);
let zip_key = StoreKey::new("zarr.zip")?;
let zip_store = Arc::new(ZipStorageAdapter::new(fs_store, zip_key)?);

Licence

zarrs_zip is licensed under either of

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 1458

cargo fmt