Magnus Ulimoen
Magnus Ulimoen
This is a whole lot of (optional) dependencies to add to the project to solve something package managers should be able to do. We also have the `static` build for...
A build time installation of a package only supporting x64 seems a bit backwards to me. Building from source remains a viable option which works on most platforms, and is...
I've had a go at this which resulted in [the following branch](https://github.com/mulimoen/hdf5-rust/tree/feature/conda). This moves the extraction to a helper crate, decreasing dev-dependencies. It seems dependencies for hdf5-c must also be...
Added an entry to the changelog
The best way depends a lot on your application. Some prefer having the fields in different datasets, others do this through a packed struct. Since `Complex` is c-compatible with `_Complex`...
There are enough breaking clippy complaints that I've opened #220 for those. Added an entry to the changelog and changed the description of this PR
This is with the most recent hdf5? I was hoping we had fixed this with #139
I have managed to track the leak down to `H5Pget_class`: ```c #include #include #include #include #define ITERATIONS 4000000 int main() { herr_t status; status = H5open(); assert(!status); hid_t dataset_access =...
I've taken a first shot at implementing this in a branch here [0]. Some notes follows * There are three reference types, two legacy and one new * Dataset region...
I think the different reference types are the old type as you suggest with separate Object and Data region references, which is replaced by a more general reference type [H5R_ref_t](https://docs.hdfgroup.org/hdf5/v1_14/struct_h5_r__ref__t.html)...