zarrs_ffi
FFI bindings for the zarrs crate, a rust library for the Zarr V3 storage format for multidimensional arrays and metadata.
Developed at the Department of Materials Physics, Australian National University, Canberra, Australia.
zarrs and zarrs_ffi are experimental and in limited production use. Use at your own risk!
Example usage can be found in the examples.
Currently zarrs_ffi only supports a small subset of the zarrs API.
CMake Quickstart
- Install the rust compiler (and cargo).
- Put Findzarrs.cmake in your
CMAKE_MODULE_PATH find_package(zarrs 0.6 REQUIRED COMPONENTS zarrs/bz2)zarrsis retrieved fromGitHubusing FetchContent and built using corrosion- Components are optional zarrs codecs
- the
zarrsFFI library is available as thezarrs::zarrstarget
A complete CMake example can be found in examples/cmake_project.
Manual Build
Basic Build
Building generates a header, and a platform-dependent static and dynamic library.
zarrs.h is only re-generated if the cbindgen feature is enabled.
Enabling SIMD intrinsics
Encoding and decoding performance may be improved with avx2/sse2 enabled (if supported).
Compile with either of:
RUSTFLAGS="-C target-cpu=native"RUSTFLAGS="-C target-feature=+avx2,+sse2"
Enabling non-default zarrs codecs
Non-default zarrs codecs (see zarrs crate features) can be enabled by passing them as feature flags.
For example:
Licence
zarrs_ffi is licensed under either of
- the Apache License, Version 2.0 LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0 or
- the MIT license LICENSE-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.