From 3dc5b08006da1cbc71ade6e4f1e17b9d0bd7b9f7 Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Thu, 10 Oct 2024 09:51:24 +0200 Subject: [PATCH] Remove fast-index --- pyproject.toml | 2 +- src/lib.rs | 14 ++------------ 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6760cc1..15c566f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/lib.rs b/src/lib.rs index 1dfbcb7..18c98b0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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))]