Cargo Features

[dependencies]
ordermap = { version = "0.5.3", default-features = false, features = ["std", "quickcheck", "rayon", "serde", "borsh", "arbitrary"] }
default = std

The std feature is set by default whenever ordermap is added without default-features = false somewhere in the dependency tree.

std default

Enables std of indexmap

Affects map::OrderMap, set::OrderSet

quickcheck

Enables quickcheck, quickcheck of indexmap

rayon

Enables rayon, rayon of indexmap

Affects map::rayon, set::rayon

serde

Enables serde, serde of indexmap

Affects map::serde_seq

borsh

Enables borsh, borsh of indexmap

arbitrary

Enables arbitrary, arbitrary of indexmap