# zarrs_object_store
[](https://crates.io/crates/zarrs_object_store)
[](https://crates.io/crates/object_store)
[](https://docs.rs/zarrs_object_store)

[](https://github.com/LDeakin/zarrs/actions/workflows/ci.yml)
[`object_store`](https://crates.io/crates/object_store) store support for the [`zarrs`](https://crates.io/crates/zarrs) Rust crate.
```rust
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));
```
## Licence
`zarrs_object_store` is licensed under either of
- the Apache License, Version 2.0 [LICENSE-APACHE](./LICENCE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0> or
- the MIT license [LICENSE-MIT](./LICENCE-MIT) or <http://opensource.org/licenses/MIT>, at your option.
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.