Skip to content

Commit

Permalink
Remove fast-index
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusuMET committed Oct 10, 2024
1 parent 564853f commit 3dc5b08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies = [

[tool.maturin]
python-source = "python"
features = [ "static", "python", "extension-module", "fast-index" ]
features = [ "static", "python", "extension-module" ]

[tool.pytest.ini_options]
addopts = "--benchmark-disable"
Expand Down
14 changes: 2 additions & 12 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,8 @@
//!
//! ## Fast indexing
//!
//! The indexing can be sped up considerably (_about 200x_) by using the new interface to [iterating
//! over chunks](https://github.com/HDFGroup/hdf5/pull/6) in HDF5. The `fast-index` feature flag currently requires a patched version of
//! [hdf5-rust](https://github.com/magnusuMET/hdf5-rust/tree/hidefix_jul_2023). You therefore have to use `patch` to
//! point the `hdf5` and `hdf5-sys` dependencies to the patched versions for now, in your
//! `Cargo.toml`:
//!
//! ```ignore
//! [patch.crates-io]
//! hdf5 = { git = "https://github.com/magnusuMET/hdf5-rust", branch = "hidefix_jul_2023" }
//! hdf5-sys = { git = "https://github.com/magnusuMET/hdf5-rust", branch = "hidefix_jul_2023" }
//! hdf5-src = { git = "https://github.com/magnusuMET/hdf5-rust", branch = "hidefix_jul_2023" }
//! ```
//! The indexing can be sped up considerably (_about 200x_) by using the new interface to
//! [iterating over chunks](https://github.com/HDFGroup/hdf5/pull/6) in HDF5.

#![cfg_attr(feature = "unstable", feature(new_uninit))]

Expand Down

0 comments on commit 3dc5b08

Please sign in to comment.