Revert hdf5 patch (TODO: add back info here)

This commit is contained in:
Magnus Ulimoen 2021-02-12 18:09:15 +01:00
parent 78f0c9ed2c
commit 743cca00e2
2 changed files with 1 additions and 6 deletions

View File

@ -17,8 +17,3 @@ debug = true
[profile.release] [profile.release]
debug = true 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" }

View File

@ -101,7 +101,7 @@ impl File {
.gzip(3) .gzip(3)
.shuffle(true) .shuffle(true)
.chunk((1, grid.ny(), grid.nx())) .chunk((1, grid.ny(), grid.nx()))
.resizable_idx(&[true, false, false]) .resizable(true)
.create(name, (0, grid.ny(), grid.nx())) .create(name, (0, grid.ny(), grid.nx()))
}; };
add_var("rho")?; add_var("rho")?;