Cargo Features

[dependencies]
ringmap = { version = "0.1.0", default-features = false, features = ["std", "test_debug", "quickcheck", "serde", "borsh", "rayon", "arbitrary"] }
default = std

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

std default

Affects map::RingMap, set::RingSet

test_debug

for testing only, of course

Features from optional dependencies

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 implicit feature

Enables borsh

borsh:

Binary Object Representation Serializer for Hashing

rayon implicit feature

Enables rayon

rayon:

Simple work-stealing parallelism for Rust

arbitrary implicit feature

Enables arbitrary

arbitrary:

The trait for generating structured data from unstructured data