#store #zarr #zarrs #storage #array

zarrs_object_store

object_store store support for the zarrs crate

3 unstable releases

0.2.1 Sep 23, 2024
0.2.0 Sep 15, 2024
0.1.0 Sep 2, 2024

#1877 in Encoding

Download history 133/week @ 2024-08-31 11/week @ 2024-09-07 204/week @ 2024-09-14 229/week @ 2024-09-21 59/week @ 2024-09-28 8/week @ 2024-10-05

500 downloads per month
Used in zarrs

MIT/Apache

130KB
2.5K SLoC

zarrs_object_store

Latest Version object_store 0.11 zarrs_object_store documentation msrv build

object_store store support for the zarrs Rust crate.

use zarrs_storage::AsyncReadableWritableListableStorage;
use zarrs_object_store::AsyncObjectStore;

let options = object_store::ClientOptions::new().with_allow_http(true);
let store = object_store::http::HttpBuilder::new()
    .with_url("http://...")
    .with_client_options(options)
    .build()?;
let store: AsyncReadableWritableListableStorage =
    Arc::new(AsyncObjectStore::new(store));

Version Compatibility Matrix

See doc/version_compatibility_matrix.md.

Licence

zarrs_object_store 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.

Dependencies

~7–17MB
~227K SLoC