aldanor / hdf5-rust

HDF5 for Rust
https://docs.rs/hdf5
Apache License 2.0
310 stars 85 forks source link

Alias the latest API available per hdf5 version #114

Closed mulimoen closed 3 years ago

mulimoen commented 4 years ago

hdf5-c introduces new functions with labels func1, func2, and selects the correct version based on a compile time macro.

We should to go through hdf5-sys and alias the latest version available to the common name func, as well as always being available through func1 (with deprecation warning where applicable) and func2 (where hdf5 version allows).

See #95 for more information