Cargo Features

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

The std feature is set by default 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