#zarr #zarrs #object-store #store #storage

zarrs_object_store

object_store store support for the zarrs crate

6 releases (3 breaking)

new 0.4.1 May 4, 2025
0.4.0 Mar 9, 2025
0.3.0 Nov 15, 2024
0.2.1 Sep 23, 2024
0.1.0 Sep 2, 2024

#2496 in Encoding

Download history 6/week @ 2025-02-05 10/week @ 2025-02-12 8/week @ 2025-02-19 108/week @ 2025-03-05 31/week @ 2025-03-12 3/week @ 2025-04-09 59/week @ 2025-04-16 147/week @ 2025-04-23

209 downloads per month
Used in zarrs

MIT/Apache

145KB
2.5K SLoC

zarrs_object_store

Latest Version object_store 0.12 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.

object_store is re-exported as a dependency of this crate, so it does not need to be specified as a direct dependency.

However, if object_store is a direct dependency, it is necessary to ensure that the version used by this crate is compatible. This crate can depend on a range of semver-incompatible versions of object_store, and Cargo will not automatically choose a single version of object_store that satisfies all dependencies. Use a precise cargo update to ensure compatibility. For example, if this crate resolves to object_store 0.11.1 and your code uses 0.10.2:

cargo update --package object_store:0.11.1 --precise 0.10.2

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

~8–16MB
~199K SLoC