Cargo Features
[dependencies]
brids = { version = "0.5.1", default-features = false, features = ["std", "serde", "rand"] }
- default = std
-
The
std
feature is set by default wheneverbrids
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of optional rand ^0.8.5 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 ^0.8.5
rand:
Random number generators and other randomness functionality