Cargo Features

[dependencies]
nam-indexmap = { version = "2.7.1-nam.0", default-features = false, features = ["std", "borsh-schema", "test_debug", "quickcheck", "serde", "rayon", "rustc-rayon", "arbitrary"] }
default = std

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

std default

Affects map::IndexMap, set::IndexSet

borsh-schema

Enables unstable__schema of borsh

test_debug

for testing only, of course

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.

quickcheck implicit feature

Enables quickcheck

quickcheck:

Automatic property based testing with shrinking

serde implicit feature

Enables serde

serde:

A generic serialization/deserialization framework

Affects map::serde_seq

borsh borsh-schema?
rayon implicit feature

Enables rayon

rayon:

Simple work-stealing parallelism for Rust

rustc-rayon implicit feature

Enables rustc-rayon

Internal feature, only used when building as part of rustc,
not part of the stable interface of this crate.

arbitrary implicit feature

Enables arbitrary

arbitrary:

The trait for generating structured data from unstructured data