Cargo Features

[dependencies]
brids = { version = "0.5.1", default-features = false, features = ["std", "serde", "rand"] }
default = std

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

std default

Enables std of optional rand and optional serde

rand:

Option (enabled by default): without "std" rand uses libcore; this option enables functionality expected to be available on a standard platform.

Features from optional dependencies

serde implicit feature

Enables serde

serde:

A generic serialization/deserialization framework

rand implicit feature

Enables rand

rand:

Random number generators and other randomness functionality