1 2 3 4 5 6 7 8 9 10 11
//! Zarr stores. //! //! See <https://zarr-specs.readthedocs.io/en/latest/v3/core/index.html#stores> mod memory_store; pub use memory_store::MemoryStore; #[cfg(feature = "async")] mod async_memory_store; #[cfg(feature = "async")] pub use async_memory_store::AsyncMemoryStore;