You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling an empty project with the following Cargo.toml
[package]
name = "hidefix-test"version = "0.1.0"edition = "2021"# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hidefix = { version = "0.8", git = "https://github.com/gauteh/hidefix.git"}
yield a compile error:
..:~/.../hidefix-test$ cargo +nightly build -r
...
error[E0599]: no method named `chunks_visit` found forreference `&hdf5::Dataset`in the current scope
--> /home/arenaud/.cargo/git/checkouts/hidefix-8eedc5ee6b6656b5/ecfb111/src/idx/dataset/dataset.rs:106:24
|
106 | ds.chunks_visit(|ci| {
| ---^^^^^^^^^^^^ help: there is a method with a similar name: `chunk_info`
For more information about this error, try `rustc --explain E0599`.
error: could not compile `hidefix` (lib) due to previous error
The text was updated successfully, but these errors were encountered:
You need to use this patched version og rust hdf5: https://github.com/gauteh/hidefix/blob/main/Cargo.toml#L57, we are using a newer version of hdf5 with some features we added. That patched version is submitted to hdf5 -rust, but has not yet been merged.
Compiling an empty project with the following Cargo.toml
yield a compile error:
The text was updated successfully, but these errors were encountered: