9 releases

0.8.1 Nov 21, 2021
0.7.1 Jan 27, 2021
0.7.0 Aug 9, 2020
0.6.1 Apr 12, 2020
0.2.5 Jul 28, 2015

#289 in Compression

Download history 5351/week @ 2023-12-12 6259/week @ 2023-12-19 879/week @ 2023-12-26 2044/week @ 2024-01-02 3049/week @ 2024-01-09 2583/week @ 2024-01-16 2236/week @ 2024-01-23 4264/week @ 2024-01-30 5077/week @ 2024-02-06 4325/week @ 2024-02-13 3692/week @ 2024-02-20 4413/week @ 2024-02-27 5267/week @ 2024-03-05 5151/week @ 2024-03-12 5744/week @ 2024-03-19 4682/week @ 2024-03-26

21,816 downloads per month
Used in 54 crates (17 directly)

MIT/Apache

4MB
54K SLoC

C 44K SLoC // 0.4% comments Rust 5K SLoC // 0.0% comments M4 2K SLoC // 0.3% comments FORTRAN Modern 1.5K SLoC // 0.1% comments Automake 200 SLoC // 0.5% comments C++ 180 SLoC // 0.3% comments Happy 90 SLoC Shell 40 SLoC // 0.4% comments

hdf5-sys

This crate provides direct bindings to the HDF5 C library and allows to build the library from C sources if need be, so it can be linked in statically.

Static linking

This crate supports linking to a static build of HDF5. The HDF5 C library is built via the hdf5-src crate which is then linked in when the static feature is set. See below for a list of supported options for static builds.

As of the time of writing, the version of the HDF5 library that is built is 1.10.5, but it may be incremented later.

Crate features

Features propagated upwards will be detected based on features available for the chosen library. The library selected can always be overridden by specifying the environment variable HDF5_DIR.

General features:

  • mpio: enable MPI support (not supported in static mode)
  • static: build HDF5 C library from source (see below for a list of options)

These options are mutually exclusive. This combination could be supported in the future, see issue #101.

The following features affect the HDF5 build options when compiling it from source:

  • hl: enable high-level features (which we don't provide bindings for)
  • threadsafe: build a thread-safe version of the library
  • zlib: enable zlib filter support
  • deprecated: include deprecated symbols (which we don't provide bindings for)

Note: HDF5 library has a separate BSD-style license.

Dependencies

~0–1.4MB
~22K SLoC