diff --git a/Cargo.toml b/Cargo.toml index 12431b2..1b78d45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,8 +17,3 @@ debug = true [profile.release] debug = true - -[patch] -[patch.crates-io] -hdf5 = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "feature/resizable_idx" } -hdf5-sys = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "feature/resizable_idx" } diff --git a/multigrid/src/file.rs b/multigrid/src/file.rs index 1d4f8cd..c445bb0 100644 --- a/multigrid/src/file.rs +++ b/multigrid/src/file.rs @@ -101,7 +101,7 @@ impl File { .gzip(3) .shuffle(true) .chunk((1, grid.ny(), grid.nx())) - .resizable_idx(&[true, false, false]) + .resizable(true) .create(name, (0, grid.ny(), grid.nx())) }; add_var("rho")?;