# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.65.0" name = "ndarray-slice" version = "0.4.0" authors = ["Rouven Spreckels "] build = false include = [ "src/**/*.rs", "Cargo.toml", "README.md", "RELEASES.md", "LICENSES/*", ] autobins = false autoexamples = false autotests = false autobenches = false 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" readme = "README.md" keywords = [ "array", "ndarray", "numpy", "select", "sort", ] categories = [ "algorithms", "data-structures", "no-std::no-alloc", "science", ] license = "MIT OR Apache-2.0" repository = "https://github.com/qu1x/ndarray-slice" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [profile.test] opt-level = 2 [lib] name = "ndarray_slice" path = "src/lib.rs" [dependencies.ndarray] version = "0.16.1" default-features = false [dependencies.rayon] version = "1.10.0" optional = true [dependencies.stacker] version = "0.1.17" optional = true [dev-dependencies.quickcheck] version = "1.0.3" [dev-dependencies.quickcheck_macros] version = "1.0.0" [dev-dependencies.rand] version = "0.8.5" [features] alloc = [] default = [ "std", "stacker", ] rayon = [ "dep:rayon", "ndarray/rayon", "std", ] std = [ "alloc", "ndarray/std", ]