zarrs 0.23.8

A library for the Zarr storage format for multidimensional arrays and metadata
Documentation
//! The `vlen-utf8` array to bytes codec.
//!
//! ### Compatible Implementations
//! This codec is fully compatible with the `vlen-utf8` codec in `zarr-python`.
//!
//! ### Specification
//! - <https://github.com/zarr-developers/zarr-extensions/tree/main/codecs/vlen-utf8>
//!
//! ### Codec `name` Aliases (Zarr V3)
//! - `vlen-utf8`
//! - `https://codec.zarrs.dev/array_to_bytes/vlen_utf8`
//!
//! ### Codec `id` Aliases (Zarr V2)
//! - `vlen-utf8`
//!
//! ### Codec `configuration` Example - [`VlenUtf8CodecConfiguration`]:
//! ```json
//! {}
//! ```

use crate::array::codec::array_to_bytes::vlen_v2::vlen_v2_macros;
pub use zarrs_metadata_ext::codec::vlen_utf8::{
    VlenUtf8CodecConfiguration, VlenUtf8CodecConfigurationV1,
};

vlen_v2_macros::vlen_v2_module!(vlen_utf8, vlen_utf8_codec, VlenUtf8Codec);