Skip to content

Commit

Permalink
Reexport object_store and opendal under zarrs::storage::store
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Jan 20, 2024
1 parent d08767d commit c65896a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- Reexport `object_store` and `opendal` under `zarrs::storage::store`

## [0.10.0] - 2024-01-17

### Changed
Expand Down
6 changes: 6 additions & 0 deletions src/storage/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@ pub use store_sync::http_store::{HTTPStore, HTTPStoreCreateError};
#[cfg(feature = "object_store")]
pub use store_async::object_store::AsyncObjectStore;

#[cfg(feature = "object_store")]
pub use object_store;

#[cfg(feature = "opendal")]
pub use store_async::opendal::AsyncOpendalStore;
#[cfg(feature = "opendal")]
pub use store_sync::opendal::OpendalStore;

#[cfg(feature = "opendal")]
pub use opendal;

// pub use store_plugin::{StorePlugin, StorePluginCreateError}; // Currently disabled.

use std::sync::Arc;
Expand Down

0 comments on commit c65896a

Please sign in to comment.