You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added
Error now implements From<Infallible>, which allows passing convertible extents (like tuples of integers) where impl TryInto<Extents> is required.
Support for HDF5 versions 1.12.1 and 1.10.8.
#[derive(H5Type)] now supports structs / tuple structs with repr(packed).
#[derive(H5Type)] now supports structs / tuple structs with repr(transparent) (the generated HDF5 type is equivalent to the type of the field and is not compound).
Changed
Renamed filters::gzip_available() to deflate_available() (the old name is present but marked as deprecated).
Code dependent on HDF5 version in hdf5 and hdf5-sys crates now uses features instead of cfg options: cfg(feature = "1.10.1") instead of cfg(hdf5_1_10_1). The main initial reason for that is for HDF5 versions to show up in the official documentation on docs.rs.
Similar to the above, there's have-direct, have-parallel and have-threadsafe features that reflect the build configuration of the underlying HDF5 library.
Fixed
Fixed a bug where all blosc filter settings were discarded / zeroed out.
Fixed errors when recovering filter pipelines from stored datasets.
Fixed a bug where filter availability was computed incorrectly.