[package] name = "ndarray-slice" version = "0.4.0" rust-version = "1.65.0" edition = "2021" authors = ["Rouven Spreckels "] description = """Fast and robust slice-based algorithms (e.g., sorting, selection, search) for non-contiguous (sub)views into n-dimensional arrays.""" documentation = "https://docs.rs/ndarray-slice" repository = "https://github.com/qu1x/ndarray-slice" readme = "README.md" license = "MIT OR Apache-2.0" keywords = [ "array", "ndarray", "numpy", "select", "sort", ] categories = [ "algorithms", "data-structures", "no-std::no-alloc", "science", ] include = [ "src/**/*.rs", "Cargo.toml", "README.md", "RELEASES.md", "LICENSES/*", ] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] ndarray = { version = "0.16.1", default-features = false } stacker = { version = "0.1.17", optional = true } rayon = { version = "1.10.0", optional = true } [dev-dependencies] quickcheck = "1.0.3" quickcheck_macros = "1.0.0" rand = "0.8.5" [features] default = ["std", "stacker"] alloc = [] std = ["alloc", "ndarray/std"] rayon = ["dep:rayon", "ndarray/rayon", "std"] [profile.test] opt-level = 2