zarrs_object_store

Crates.iozarrs_object_store
lib.rszarrs_object_store
version0.2.1
sourcesrc
created_at2024-09-02 10:58:29.353559
updated_at2024-09-23 00:40:05.265883
descriptionobject_store store support for the zarrs crate
homepage
repositoryhttps://github.com/LDeakin/zarrs
max_upload_size
id1360385
size27,044
Lachlan Deakin (LDeakin)

documentation

https://docs.rs/zarrs_object_store

README

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.

Commit count: 900

cargo fmt