Cargo Features

[dependencies]
ndarray-slice = { version = "0.4.0", default-features = false, features = ["std", "alloc", "rayon", "stacker"] }
default = stacker, std

These default features are set whenever ndarray-slice is added without default-features = false somewhere in the dependency tree.

std default rayon? = alloc

Enables std of ndarray

Affects ndarray-slice::Slice1Ext.sort_by_cached_key

alloc std

Affects ndarray-slice::Slice1Ext.sort, ndarray-slice::Slice1Ext.sort_by, ndarray-slice::Slice1Ext.sort_by_key

rayon = std

Enables rayon, rayon of ndarray

Affects ndarray-slice::Slice1Ext.par_sort, ndarray-slice::Slice1Ext.par_sort_by, ndarray-slice::Slice1Ext.par_sort_by_key, ndarray-slice::Slice1Ext.par_sort_by_cached_key, ndarray-slice::Slice1Ext.par_sort_unstable, ndarray-slice::Slice1Ext.par_sort_unstable_by, ndarray-slice::Slice1Ext.par_sort_unstable_by_key, ndarray-slice::Slice1Ext.par_select_many_nth_unstable, ndarray-slice::Slice1Ext.par_select_many_nth_unstable_by, ndarray-slice::Slice1Ext.par_select_many_nth_unstable_by_key

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

stacker default