Crates.io | zarrs_object_store |
lib.rs | zarrs_object_store |
version | 0.2.1 |
source | src |
created_at | 2024-09-02 10:58:29.353559 |
updated_at | 2024-09-23 00:40:05.265883 |
description | object_store store support for the zarrs crate |
homepage | |
repository | https://github.com/LDeakin/zarrs |
max_upload_size | |
id | 1360385 |
size | 27,044 |
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));
See doc/version_compatibility_matrix.md.
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.