hdf5-rs

Build Status Appveyor Build Status

Documentation Changelog

Thread-safe Rust bindings and high-level wrappers for the HDF5 library API.

Requires HDF5 library of version 1.8.4 or later.

Compatibility

Platforms

hdf5-rs is known to run on these platforms:

Rust

hdf5-rs is tested for all three official release channels: stable, beta and nightly.

Building

HDF5 version

Build scripts for both libhdf5-sys and hdf5-rs crates check the actual version of the HDF5 library that they are being linked against, and some functionality may be conditionally enabled or disabled at compile time. While this allows supporting multiple versions of HDF5 in a single codebase, this is something the library user should be aware of in case they choose to use the low level FFI bindings.

Linux, OS X

The build script of libhdf5-lib crate will try to use pkg-config if it's available to deduce HDF5 library location. This is sufficient for most standard setups.

There are also two environment variables that may be of use if the library location and/or name is unconventional:

Note that cargo clean is requred before rebuilding if any of those variables are changed.

Windows

hdf5-rs fully supports MSVC toolchain, which allows using the official releases of HDF5 and is generally the recommended way to go. That being said, previous experiments have shown that all tests pass on the gnu target as well, one just needs to be careful with building the HDF5 binary itself and configuring the build environment.

Few things to note when building on Windows:

License

hdf5-rs is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.