2 releases
0.9.1 | Aug 9, 2024 |
---|---|
0.9.0 | Aug 8, 2024 |
#487 in Filesystem
3,021 downloads per month
Used in 12 crates
(7 directly)
4.5MB
66K
SLoC
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 libraryzlib
: enablezlib
filter supportdeprecated
: include deprecated symbols (which we don't provide bindings for)
Note: HDF5 library has a separate BSD-style license.
Dependencies
~0.4–5.5MB
~26K SLoC